Construye un generador de oraciones

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);

you should not use that many ( and ), it confuses the tests

Disculpa, a que te refieres con (, ). No entiendo

you have used ( and ) many times, use them less