Build a Sentence Maker - Build a Sentence Maker

Tell us what’s happening:

I’m pretty sure I used everything correctly and correct syntax and also I’m using the correct story format.

Your code so far

let adjective = "pretty"
let noun = "gecko"
let verb = "barrel rolling" 
let place = "Shoe store"
let adjective2 = "shady"
let noun2 = "rolling papers"

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 = "Dope"
noun = "morty"
verb = "fist bumping"
place = "the universe"
adjective2 = "crispy"
noun2 = "chips"

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)

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 OPR/131.0.0.0

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

Hi @drewcote96,

Please check your capitalization here.

And you are missing a space in both of your story templates. Look closely at what is displayed in the console.

Happy coding