Can anyone help me solve this

Hey, first, please don’t post pictures of code. Also, cut and paste the code and provide a link. In the future, the Get Help -> Ask for Help button will do that for you.

Looking at your code, it looks like you changed the inner text of the Indoor label, just like the failing test message says. Read those messages - they are trying to tell you where the problem is. You have “indoor”, but I expect it would match the others, and be " Indoor".

Try to add the word checked inside the first radio’s label. in this case would be the label that has “indoor” in it:

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

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.