Build a Sentence Maker - Build a Sentence Maker

Tell us what’s happening:

It keeps asking me to “assemble the first story using the variables i declared in the correct order.”
15. You should assemble your first story using the variables you declared in the correct order.
// tests completed
// console output
First story: Once upon a time, there was a(n) beautiful chair who loved to eat pencils. The chair lived in a hospital and had large nostrils that blew fire when it was jump.
Second story: Once upon a time, there was a(n) ugly table who loved to eat pens. The table lived in a gym and had small nostrils that blew fire when it was swim.

This is my only error, can someone please help!

Your code so far

let adjective;
let noun;
let verb;
let place;
let adjective2;
let noun2;

adjective = "beautiful";
noun = "chair";
verb = "jump";
place = "hospital";
adjective2 = "large";
noun2 = "pencils";

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

adjective = "ugly";
noun = "table";
verb = "swim";
place = "gym";
adjective2 = "small";
noun2 = "pens";

let secondStory;

secondStory ="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("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/144.0.0.0 Safari/537.36

Challenge Information:

Build a Sentence Maker - Build a Sentence Maker

Just a tiny mini tini bug, you put a new line somewhere in your string:

Remove it and all is dandy ┌( ͝° ͜ʖ͡°).

Thank you so much! That worked!