Learn HTML Forms by Building a Registration Form - Step 38

So I typed up everything exactly the way it says in the instructions, but still doesn’t pass and says " The first input element should have an id of profile-picture ." So what exactly am I doing wrong?

     <fieldset>
        <label id="profile-picture">Upload a profile picture: <input type="file" /></label>
        <label id="age">Input your age (years): <input type="number" min="13" max="120" /></label>
        <label id="referrer">How did you hear about us?
          <select>
            <option value="">(select one)</option>
            <option value="1">freeCodeCamp News</option>
            <option value="2">freeCodeCamp YouTube Channel</option>
            <option value="3">freeCodeCamp Forum</option>
            <option value="4">Other</option>
          </select>
        </label>
        <label id="bio">Provide a bio:
          <textarea></textarea>
        </label>
      </fieldset>

Can you provide a link to the challenge

Link the applicable form elements and their label elements together.

Use profile-picture, age, referrer, and bio as values for the respective id attributes.

Hello!

The id goes into the input element. Example:
< label for="dog’ > < input id=“dog” > < / label >
The for attribute in the label matches the id attribute in the input element for the program to match the submission.