I cant name my Radio

Tell us what’s happening:
The Site tells me to name my radio but they are named and I dont know what is wrong with my code.
I hope somebody can help me.

Thanks

Your code so far


<h2>CatPhotoApp</h2>
<main>
  
  <form action="/submit-cat-photo">
    <input type="text" placeholder="cat photo URL" required>
    <button type="submit">Submit</button>
     <input id="indoor" type="radio"name="indoor-outdoor">
     <label
     for="indoor">Outdoor
    </label>
    <input id="outdoor" type="radio"name="indoor-outdoor">
    <label for="outdoor">Indoor
    </label>
  </form>
</main>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36.

Link to the challenge:

I noticed that you switched up attributes for input box and label for a different text. You have Outdoor text for label but all of its associated attributes are for indoor and so id the other radiobox. Reset the exercise and try again.