Need help with lazy line-Basic HTML and HTML5: Use the value attribute with Radio Buttons and Checkboxes

Tell us what’s happening:
everything on here is fine except for one of the check boxes. This line is the same as the energetic line and i got that line corect. this is the message:
One of your checkboxes should have the value attribute of lazy .

Your code so far


<h2>CatPhotoApp</h2>
<main>
<p>Click here to view more <a href="#">cat photos</a>.</p>

<a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>

<p>Things cats love:</p>
<ul>
  <li>cat nip</li>
  <li>laser pointers</li>
  <li>lasagna</li>
</ul>
<p>Top 3 things cats hate:</p>
<ol>
  <li>flea treatment</li>
  <li>thunder</li>
  <li>other cats</li>
</ol>
<form action="/submit-cat-photo">
  <label><input id="indoor" value= "indoor" type="radio" name="indoor-outdoor"> Indoor</label>
  <label><input id="outdoor" value="outdoor" type="radio" name="indoor-outdoor"> Outdoor</label><br>
  <label><input id="loving" value="loving" type="checkbox" name="personality"> Loving</label>
  <label><input id="Lazy" value="Lazy" type="checkbox" name="personality">Lazy</label>
  <label><input id="Energetic" value="energetic" type="checkbox" name="personality"> Energetic</label><br>
  <input type="text" placeholder="cat photo URL" required>
  <button type="submit">Submit</button>
</form>
</main>

Your browser information:

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

Challenge: Use the value attribute with Radio Buttons and Checkboxes

Link to the challenge:

What you have is Lazy ( with capital L). What is needed is lazy (with lowercase l)

i originally had it lower case and i still recieved the message. I pasted and copy the energetic line and put the lazy words in its place and i still got the error message. but i just did what you suggested and its giving me the same message. passed all but the “lazy” line. ima paste the messages:
One of your radio buttons should have the value attribute of indoor .

Passed

One of your radio buttons should have the value attribute of outdoor .

Passed

One of your checkboxes should have the value attribute of loving .
did not pass

One of your checkboxes should have the value attribute of lazy .

Passed

One of your checkboxes should have the value attribute of energetic .

Copy and paste this and compare with what you were submitting

<h2>CatPhotoApp</h2>
<main>
<p>Click here to view more <a href="#">cat photos</a>.</p>

<a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>

<p>Things cats love:</p>
<ul>
  <li>cat nip</li>
  <li>laser pointers</li>
  <li>lasagna</li>
</ul>
<p>Top 3 things cats hate:</p>
<ol>
  <li>flea treatment</li>
  <li>thunder</li>
  <li>other cats</li>
</ol>
<form action="/submit-cat-photo">
  <label><input id="indoor" value= "indoor" type="radio" name="indoor-outdoor"> Indoor</label>
  <label><input id="outdoor" value="outdoor" type="radio" name="indoor-outdoor"> Outdoor</label><br>
  <label><input id="loving" value="loving" type="checkbox" name="personality"> Loving</label>
  <label><input id="lazy" value="lazy" type="checkbox" name="personality">Lazy</label>
  <label><input id="energetic" value="energetic" type="checkbox" name="personality"> Energetic</label><br>
  <input type="text" placeholder="cat photo URL" required>
  <button type="submit">Submit</button>
</form>
</main>


Thank you so much… it worked!!