Quick Question on Creating a Set of Radio Buttons

I feel like my code is correct however I can’t proceed because I need to make sure my" label elements have a closing tag". Can anyone tell me what I did wrong?
Here is the code:

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

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

You might also want to check what “test” your not passing.

When i put your code at the bottom of the challenge it gave me the same error but upon looking at the “test” it checks it was indicating that I didn’t put the code in inside the form.

just a thought.

-Nao