Need help passing this code! Beginner

<form action="/submit-cat-photo">
    <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>
    <input type="text" placeholder="cat photo URL" required>
    <button type="submit">Submit</button>
  </form>
</main>
<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>
Says I'm missing---

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

ok… I will check now, Thank you!!

Is this is ? — Basic HTML and HTML5: Use the value attribute with Radio Buttons and Checkboxes

Im sorry. Im in college for IT and security All I am trying to do is learn how to code before my class gets to it so I can be a step ahead … I don’t know a thing about coding yet but I am going to try my ass off because I want to learn it so bad!!! I do thank you for your reply… Still a little lost but what im getting is that I had to add in value= somewhere in there

that’s correct, you also need to keep in mind that the existing elements are the ones you need to add the value attribute to. You don’t need to create new elements.

Thank you very much !! I appreciate it a ton.!!.