Build a sentence maker

I cant seem to figure out what is wrong with my code for this below. let adjective = “brave”;

let noun = “dragon”;

let verb = “sneezing”;

let place = “mountain”;

let adjective2 = “fiery”;

let noun2 = “marshmallows”;

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

noun = “unicorn”;

verb = “running”;

place = “enchanted forest”;

adjective2 = “sparkly”;

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

can you give me the link of the problem?

you semicolon are wrong , here’s a tip get comfortable using this ` semicolons instead, it will be helpful in future

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.