Build a Sentence Maker - Step 25

Tell us what’s happening:

‘You should assemble your second story using the variables you declared in the correct order.’ I keep getting this error when I submit my code, and I can’t figure out what the solution is.

Your code so far

let adjective = "Noisy";
let noun = "Nurse";
let verb = "Sleep";
let place = "Resturaunt";
let adjective2 = "Nice";
let noun2 = "Pianist";
let 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);
adjective = "A";
noun = "B";
verb = "C";
place = "D";
adjective2 = "E";
noun2 = "F";
const secondStory = "Once upon a time, there was a(n) A B who loved to eat F. The B lived in a D and had E nostrils that blew fire when it was C.";
console.log("Second story: " + secondStory);

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36 Edg/145.0.0.0

Challenge Information:

Build a Sentence Maker - Build a Sentence Maker

Welcome to the forum @Squigglyline

25. You should assemble your second story using the variables you declared in the correct order.

Use variables, not the values, for the second story console log.

Happy coding