Build a Sentence Maker - Build a Sentence Maker

Tell us what’s happening:

It’s still telling me to “log your story using the message First story: [firstStory]” and the same thing for my second story, but as far as I can tell that’s exactly the format I used but it still isn’t working. I’ve checked spacing since that seemed to be what other people had problems with but I couldn’t find anything.

Your code so far

let adjective = 'small';
let noun = 'toad';
let verb = 'jumping';
let place = 'swamp';
let adjective2 = 'triangular';
let noun2 = 'people'

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 = "round";
noun = "groundhog";
verb = "falling";
place = "city";
adjective2 = "gross";
noun2 = "apples";

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/146.0.0.0 Safari/537.36 OPR/130.0.0.0

Challenge Information:

Build a Sentence Maker - Build a Sentence Maker

Welcome to the forum @Quickn!

There should be no space between a function/method call and the opening parentheses.

Happy coding!

That did it, thank you so much!