Build a Sentence Maker - Build a Sentence Maker

Tell us what’s happening:

Looks like it should be okay, but it still hint me with “Pay attention to spaces” but heck i got em.

Your code so far

let adjective = "nice";
let noun = "dog";
let verb = "running";
let place = "tree";
let adjective2 = "smart";
let noun2 = "children";

let firstStory;
firstStory = "Once upon a time, there was a(n) " + adjective + " " + noun + " who loved to eat " + noun2 + "." + " The " + noun2 + " lived in a " + place + " and had " + adjective2 + " nostrils that blew fire when it was " + verb + ".";

console.log("First story: " + firstStory);

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:149.0) Gecko/20100101 Firefox/149.0

Challenge Information:

Build a Sentence Maker - Build a Sentence Maker

Welcome to the forum @kraha!

Check this bit. Are you using the correct variable?

Happy coding!