Im really stuck on this please help me

question:
Each of your two radio button elements should be nested in its own label element.

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

Welcome to the forum!

You need to nest the radio buttons inside of the labels. There is an example of this in the challenge description, and I have included an example below:

<parent tag>
  <nested tag>
</parent tag>

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).