Build a Sentence Maker - Build a Sentence Maker

Tell us what’s happening:

Hello,

I am stucked in point 13. I have examined my code and seems nothing wrong but still fail:

let adjective = “handsome”;
let noun = “man”;
let verb = “take”;
let place = “Seattle”;
let adjective2 = “black”;
let noun2 = “apple”;
let firstStory;
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 + “.”;

Your code so far

let adjective = "handsome";
let noun = "man";
let verb = "take";
let place = "Seattle";
let adjective2 = "black";
let noun2 = "apple";
let firstStory;
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 + ".";

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 Edg/144.0.0.0

Challenge Information:

Build a Sentence Maker - Build a Sentence Maker

hello @test-maker welcome to the forum!

the sentence should start with Once upon a time, there was a(n)… Your’s is missing the ‘(n)’.

Welcome to the forum @djmoney642,

This forum is for people learning to code, not for people looking for someone to hire.

Please read the Code of Conduct and forum rules.

Happy coding!