When i use "Check Your Code (CTRL + Enter) I get the “Sorry your code does not pass”. I don’t know what to do, i’ve even tried using chatgpt which says that i’m doing the right thing. The error i get is The first input element should have an id of profile-picture .
This is my code:
<fieldset>
<label id="profile-picture">Upload a profile picture: <input type="file" /></label>
<label>Input your age (years): <input type="number" min="13" max="120" /></label>
<label>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>Provide a bio:
<textarea></textarea>
</label>
</fieldset>