Help me i just recently start code and i dont understand

Tell us what’s happening:
im stuck i dont understand

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 for="indoor"> 
 <input id="indoor" value="indoor" type="radio" name="indoor-outdoor">Indoor 
</label>
   <label for="outdoor"> 
 <input id="outdoor" value="outdoor" type="radio" name="indoor-outdoor">Outdoor 
</label><br>
<label><input type="checkbox" name="loving" value="loving"> loving</label>
   <label><input type="checkbox" name="lazy" value="lazy"> lazy</label>
   <label><input type="checkbox" name="energetic" 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) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36.

Challenge: Use the value attribute with Radio Buttons and Checkboxes

Link to the challenge:
https://www.freecodecamp.org/learn/responsive-web-design/basic-html-and-html5/use-the-value-attribute-with-radio-buttons-and-checkboxes

Hey!
All you’ll need to add here is the value attribute to the labels.
Example:

<label><input type="radio" name="indoor-outdoor"> Indoor</label>
<label><input type="radio" name="indoor-outdoor"> Outdoor</label><br>
<label><input type="checkbox" name="personality"> Loving</label>
<label><input type="checkbox" name="personality"> Lazy</label>
<label><input type="checkbox" name="personality"> Energetic</label><br>

to this

<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>

Try resetting your code and trying it again if you’re still stuck.

Hey, you need insert atribute value equal value of input text.
Example:

<label><input type="radio" value="indoor" name="indoor-outdoor"> Indoor</label>
<label><input type="radio" value="outdoor" name="indoor-outdoor"> Outdoor</label><br>
<label><input type="checkbox" value="loving" name="personality"> Loving</label>
<label><input type="checkbox" value="lazy" name="personality"> Lazy</label>
<label><input type="checkbox" value="energetic" name="personality"> Energetic</label><br>
<input type="text" placeholder="cat photo URL" required>