Construir un Creador de Oraciones - Construye un Creador de Oraciones

Cuéntanos qué está pasando:

I’m trying to resolve the code but is keeping saying that I need to use the format, I tried to copy and paste the format and also double check the spaces but nothing seems to work please help!

Tu código hasta el momento

let adjective = "ancient";
let noun = "forest";
let verb = "jump";
let place = "river";
let adjective2 = "bright";
let noun2 = "fox";

let firstStory = " Once upon a time, there was a(n) " + adjective + " " + noun + " who love 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);

adjective = "empty";
noun = "city";
verb = "dance";
place = "park";
adjective2 = "clumsy";
noun2 = "robot";

let secondStory = " Once upon a time, there was a(n) " + adjective + " " + noun + " who love to eat " + noun2 + ". The " + noun + " lived in a " + place + " and had " + adjective2 + " nostrils that blew fire when it was " + verb + ".";

console.log("Second Story: " + secondStory);

Información de tu navegador:

El agente de usuario es: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:148.0) Gecko/20100101 Firefox/148.0

Información del Desafío:

Construir un Creador de Oraciones - Construye un Creador de Oraciones

Welcome to the forum @Joguisam !

Does the story template have a space before ‘Once’?

Are these words exactly the same as the story template?

Happy coding!