Can you report the error please?
I also have noticed that you have made a mistake in your label elements(the indoor and outdoor), you did not spell it right.(You said “indorr” and “outdorr” in the label attribute).
Remember that the for attribute in the label must match to the id attribute in your input type.
<label> <input type="radio" name="indoor-outdoor">Indoor </label> <label> <input type="radio" name="indoor-outdoor">Outdoor </label>
and becareful u can not set two different values for ids of radio buttons
and in radio button just use one of them id or name and both of them has to same value
Other than the rest of the code to complete the challenge, everything checks out. As others pointed out, some errors in consistency, but output checks.