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

let adjective = “smart”;

let noun = “dog”;

let verb = “angry”;

let place = “museum”;

let adjective2 = “fiery”;

let noun2 = “marshroom”;

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 = “crazy”;

noun = “robot”;

verb = “sleeping”;

place = “town”;

adjective2 = “shiny”;

noun2 = “cupcakes”;

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

don’t go to a new line inside creating the string

for next time please use the HELP button

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Get Help > Ask for Help button located on the challenge.

The Ask for Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.

thank you so much , and i will follow the steps given to me