Aprende formularios HTML construyendo un formulario de registro - Paso 35

<fieldset>
        <label>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>(select one)</option>
            <option>freeCodeCamp News</option>
            <option>freeCodeCamp Youtube Channel</option>
            <option>freeCodeCamp Forum</option>
            <option>Other</option>
          </select>
        </label>
      </fieldset>

"Las opciones desplegables están actualmente vacías. Para darles contenido, agregue el siguiente texto a cada elemento subsecuente de option:

(select one)
freeCodeCamp News
freeCodeCamp YouTube Channel
freeCodeCamp Forum
Other"
Hola estoy con este problema, lo hago tal cual me lo pide pero me deja con un error que dice: " Debes dar al tercer elemento option el texto `freeCodeCamp YouTube Channel". Ya no se que hacer.

Hola.

Cuando te salga algo así, mejor utiliza el copia y pega.
Tecleando tú mismo el texto, puedes cometer algún error tipográfico, como en este caso la T mayúscula de YouTube. Tú la tienes en minúscula. ¿Te habías fijado?

Un fallo tonto, que te puede dar grandes quebraderos de cabeza.

Un saludo.