What is wrong with this code (2)?

Tell us what’s happening:

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="https://freecatphotoapp.com/submit-cat-photo">
<input id="indoor" type="radio" name="indoor-outdoor">
<label for="indoor">indoor</label>
<input id="outdoor" type="radio" name="indoor-outdoor">
<label for="outdoor">outdoor</label>
  <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/84.0.4147.89 Safari/537.36.

Challenge: Create a Set of Radio Buttons

Link to the challenge:

You should make opening and closing label tag around each radio button.

Here is solution for one radio button and try to solve the other radio button:

<label for="indoor"><input id="indoor" type="radio" name="indoor-outdoor"> Indoor</label>

Here is the full solution:

<label>
    <input type="radio" name="indoor-outdoor">Indoor
</label>
<label >
    <input type="radio" name="indoor-outdoor">Outdoor
</label>

ErFy I don’t get. More details please

one of the requirement in the challenge is that (Each of your two radio button elements should be nested in its own label element.), but in the video solution it doesn’t have this requirement so you can’t pass the challenge with that solution. In order to pass the challenge you need to have the <input ..........> inside your <label ........></label> element.
The structure for this challenge can be like this:

<label ........>
   <input .............................> Indoor
</label>

Plus: One of the pros of pros of having <input > inside <label> is that you can omit for and id attribute.

Thanks a lot. I appreciate