Value attribute with Radio Buttons and Checkboxes

Tell us what’s happening:
I guess i followed the instruction properly, i attributed the value to each checkboxes, keeps giving me error, i have been stocked for hours. Please someone help me. The value got me in pain!!!

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 value="indoor" type="radio" name="indoor-outdoor" checked> Indoor</label>
  <label><input value="outdoor" type="radio" name="indoor-outdoor"> Outdoor</label><br>
  <label><input value="Loving"type="checkbox" name="personality" checked> Loving</label>
  <label><input  value="Lazy" type="checkbox" name="personality"> Lazy</label>
  <label><input 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 (X11; CrOS x86_64 12739.105.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.158 Safari/537.36.

Challenge: Use the value attribute with Radio Buttons and Checkboxes

Link to the challenge:

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

See this post to find the backtick on your keyboard. The “preformatted text” tool in the editor (</>) will also add backticks around text.

Note: Backticks are not single quotes.

markdown_Forums

What do the failing tests say?

I appreciate your promptly replay, but i solved the problem. I supposed to type the Value in the right place.
Thanks