Build a Sentence Maker - Build a Sentence Maker

Tell us what’s happening:

please can you help me what’s the problem in my code

Your code so far

let adjective = "fierce";
let noun = "dragon";
let verb = "angry";
let place = "dark cake";
let adjective2 = "enormous";
let noun2 = "knights";


let firstStory = "Once upon a time, there was a " + 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 = "chubby";
adjective2 = "tiny";
noun = "giant";
noun2 = "pizza";
verb = "sneezing";
place = "tall tower";


let secondStory = "Once upon a time, there was a " + 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/146.0.0.0 Safari/537.36

Challenge Information:

Build a Sentence Maker - Build a Sentence Maker

You should use the correct story format for both stories and pay attention to spaces.

Welcome back @amrit1 !

Also, please make sure there are no line breaks in your story string.

Happy coding?