Look at how you linked the labels and inputs above in the previous fieldsets. You added a for element to the label and an id to the input and you set them both to the same value. That’s what you want to do here for the last fieldset. The instructions are giving you the values to use.
Please don’t post pics of code, it is hard to read and test. To display your code in here you need to wrap it in triple back ticks. On a line by itself type three back ticks. Then on the first line below the three back ticks paste in your code. Then below your code on a new line type three more back ticks. The back tick on my keyboard is in the upper left just above the Tab key and below the Esc key. You may also be able to use Ctrl+e to automatically give you the triple back ticks while you are typing in the this editor and the cursor is on a line by itself. Or you can use the </> button above the editor window when the cursor is on a line by itself.
<label for="profile-picture" for="age" for="referrer"for="bio">Provide a bio: <input id="profile-picture"id="age" id="referrer"id="bio"></label>
<textarea></textarea>ype or paste code here
Look at the other label/inputs you have already added in the previous fieldsets. Do any of those labels have multiple for attributes? No, because HTML does not allow multiple attribute names like that. In other words, you can only have one for attribute per tag. Likewise, you can only have one id attribute on an input (or any other element for that matter).
Why did you change all of the label text to “Provide a bio:” in the first one? Why did you delete the label text in the second one? Why did you delete the select in both of them?
Restart the step to get the original HTML back. The only things you want to do are:
Add for attribute/value to the labels
Add id attribute/value to the inputs/select
The values you should use for these are given to you in the instructions. For example, you would use the value profile-picture for the label/input that asks the user to upload a picture.
Those are the only changes you should be making to the HTML. If you change anything else then you are doing it wrong