Build a Sentence Maker - Build a Sentence Maker

Tell us what’s happening:

Hi! whenever I attempt to complete the first story, itll first tell me im missing a semicolon, and then mark everything else wrong.

Your code so far

let adjective = "happy"
let noun = 'goodwill'
let verb = "running"
let place = "sky"
let adjective2 = "sad"
let noun2 = "ately"
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 ".";

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36

Challenge Information:

Build a Sentence Maker - Build a Sentence Maker

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/lab-sentence-maker/66c057041df6394ca796bf33.md at main · freeCodeCamp/freeCodeCamp · GitHub

Welcome to the forum @frenty,

See the red squiggly lines under the period at the end of your sentence and the SyntaxError in the console? Your syntax error is there. Is that period properly concatenated to verb?

Happy coding

It was not, apparently. Thank you! Coding at night isnt ideal it seems.