Why do I keep getting 2 wrong?

Tell us what’s happening:

I followed the checkboxes. In order. And I got 2 wrong that said I have a typo or got them in wrong order.

  **Your code so far**
<input id="loving" type="checkbox"  name="personality"> <label for="loving">Loving</label>
      <input id="lazy" type="checkbox" name="personality"> <label for="lazy">Lazy</label>
       <input id="Energetic" type="checkbox" name="personality"> <label for="Energetic">Energetic</label>
    </fieldset>





  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36

Challenge: Step 58

Link to the challenge:

Hi @ fort.baguio, and welcome to the forums!

For this challenge, the instructions are asking you to give the checkbox an id of energetic.
Your code has an id of Energetic, which isn’t quite correct (remember, capitalisation matters).

And the for attribute on the label element has the same problem.

If you can correct those two small problems, I think your code will pass the tests.

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