How to do this exercise?

https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/check-radio-buttons-and-checkboxes-by-default

In the instructions it gives an example of how the code should look when the “checked” attribute is being used correctly.

<input type=“radio” name="test-name"checked>

If we take a look at the instructions, we see that it wants us to add the “checked” attribute to the first radio button and the first checkbox.

First radio button:
Line 20 of the code

The best way to do this is to have it look just like the example above. If we add it to the end it should look like this:

<input type=“radio” name="indoor-outdoor"checked> Indoor

First checkbox:
Line 22 of the code

For this challenge we do the exact same thing:

<input type=“checkbox” name="personality"checked>

Make sure to leave a space between the “” and the checked attribute