Bug in the test? Cannot proceed

Tell us what’s happening:

This is the problem statement:

Step 36

Within the first div.answer element, nest one required select element with three option elements.

Give the first option element a value of "", and the text Select an option. Give the second option element a value of yes, and the text Yes. Give the third option element a value of no, and the text No.

I wrote my solution below. I believe my code is right, but I still cannot proceed to the next step.

The error:

Test: Sorry, your code does not pass. Don’t give up.

My code

            <div class="answer">
              <select required>
                <option value="">Select an option</option>
                <option value="yes">Yes</option>
                <option value="no">No</option>
              </select>
            
          </div>

Browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.61 Safari/537.36

Challenge: Step 36

Link to the challenge:

When I run your code it passes.

Are you by any chance using Safari? It seems to be causing problems with freeCodeCamp challenges lately.

No, it’s Chrome. I have also tried disabling all extensions, just in case. However, I didn’t face similar problem for other challenges that I’m doing for the last couple of days.

Screenshot:

Your code is correct and you can skip ahead to the next lesson from the curriculum page if you like.

If you want to keep troubleshooting, you can try logging out, clearing your cache, logging in again, and trying fresh.

Thanks for your reply, I just resumed the Challenge from Step 37 now.

Also, same problem at Step 66. I am sure the code is right, but I still cannot proceed to next step.

I have the same code in my lesson and mine is not working either. I’m using Firefox.

If you have a question about a specific challenge as it relates to your written code for that challenge, just click the Ask for Help button located on the challenge. It will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.