function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Sheila Northrop 10Sheila Northrop 10 

Problem completing VF challenge in trailhead

I can't get verification for this challenge, even though I can see that it is correct - obviously an email address is shown. I saw a post that suggested trying a new org, but Trailhead keeps looking at the old org and won't connect to the new one. I would prefer to not lose all the challenges that I've already completed. Suggestions? This is not the first challenge that will not verify for me and it's really annoying. Should I be creating a case about this? Or have I missed something here?

User-added imageUser-added imageUser-added image
KaranrajKaranraj
Shelia - As per the challenge description you have to display the Contact Owner's email address not the Contact email address. In your visualforce page you are displaying Contact email address. 
Sheila Northrop 10Sheila Northrop 10
Thank you so much - I can't believe I missed that, and I feel really stupid. Thanks for pointing out what should have been obvious.
Amit Chaudhary 8Amit Chaudhary 8
Hi Sheila,

Karanraj is right. You need to show Contact Owner email id not the contact email id.
Please check below post for same issue. I hope that will help u
https://developer.salesforce.com/forums/?id=906F0000000BQZQIA4

Your code should be
<apex:pageBlockSection >
            First Name: {! Contact.FirstName } <br/>
            Last Name: {! Contact.LastName } <br/>
            Owner's Email: {! Contact.Owner.Email } <br/>
        </apex:pageBlockSection>

Please let us know if this will help u

Thanks
Amit Chaudhary