Hi @ade2! First of all, welcome to freeCodeCamp! What the challenge is asking you to do, is for each of the checkbox and radio inputs, you want to give them a value attribute.
This is important because you want the server to know what value is associated with the input. For example, if you have a checkbox with the text tired next to it, you should also would want to give it the value of tired.
So, think about how each of the radio and checkbox inputs should be defined. What value should they be given? Then give them this value using value=“exampleValue”