Build a Sentence Maker - Build a Sentence Maker

Tell us what’s happening:

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

Your code so far

let adjective = "little";
let noun = "cat";
let verb = "allergic";
let place = "old house";
let adjective2 = "delicate";
let noun2 = "fries";
const 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 = "angry";
noun = "dog";
verb = "breathing";
place = "old room";
adjective2 = "rare";
noun2 = "soup";
const 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/147.0.0.0 Safari/537.36

Challenge Information:

Build a Sentence Maker - Build a Sentence Maker

Welcome to the forum @fixad!

Please make sure your story string is built all on one line. Yours has line breaks.

Happy coding!