Hola a todos, soy nuevo acá, tengo problemas para pasar el paso, “14. Debes usar el formato correcto para la primera historia: "Once upon a time, there was a(n) [adjective] [noun] who loved to eat [noun2]. The [noun] lived in a [place] and had [adjective2] nostrils that blew fire when it was [verb]."
Presta atención a los espacios.”
Este es mi codigo JavaScript
let adjective;
let noun;
let verb;
let place;
let adjective2;
let noun2;
adjective = ("Dragon");
noun = ("Grande");
verb = ("Comia");
place = ("Bosque");
adjective2 = ("Horrible");
noun2 = ("Ovejas");
let firstStory;
firstStory = ("Once upon a time, there was a(n) " + adjective + " " + noun + " who loved to eat " + noun2+ "." + " The" + " " + noun + " lived in a " + place + " and had " + adjective2 + " nostrils that blew fire when it was " + verb + ".")
console.log("First story: " + firstStory);