Radio Checkbox Button

Tell us what’s happening:
Hello Everybody,
I tried many times to accomplish this challenge, but I cannot see what am I doing wrong. Is there anyone who can kindly help me understand what I am missing, please?
Thanks

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 type="radio" name="indoor-outdoor" value="indoor"> indoor</label>
<label><input type="radio" name="indoor-outdoor" value="outdoor"> outdoor</label><br>

<label><input type="checkbox" name="personality" value="loving">loving</label>
<label><input type="checkbox" name="personality" value="lazy"> lazy</label>
<label><input type="checkbox" name="personality" value="energetic"> 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; rv:74.0) Gecko/20100101 Firefox/74.0.

Challenge: Use the value attribute with Radio Buttons and Checkboxes

Link to the challenge:

Welcome, francesco.

You have changed code you should not have. I recommend resetting all your code, and carefully reading the instructions again.

Hope this helps

Thank you, I reset the code, write it again and I passed it. Thank you for your help.
Regards