Problems with coding challange 22

This challenge?
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/create-a-set-of-radio-buttons/

We need to see your code to be able to help you. If you use the “Ask for help button” it will make a thread with the code for you. Or you can copy/paste the code in this thread. Just make sure it is formatted correctly.

If I’m right about the challenge, then my blind guess would be that you didn’t nest the inputs inside the labels. Look at the example code given in the challenge to see how the nesting works.

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