Error message i cannot understand but the button is functional

Indoor Outdoor Error message i am getting is : Each of your two radio button elements should be nested in its own `label` element.

Message is pretty simple. You’ve to nest the radio button in a label. Here is an example. This is just an example, so id, name etc. might be different in the actual challenge.

<label for="in">
    <input type="radio" name="inout" id="in">In
</label>

<label for="out">
    <input type="radio" name="inout" id="out">Out
</label>