Build a Sentence Maker - Build a Sentence Maker

Tell us what’s happening:

help, i keep getting these errors. i had checked a lot of time but i couldnt find it
16. You should log your first story using the message “First story: [firstStory]”.
26. You should log your second story using the format “Second story: [secondStory]”.

Your code so far

let noun = "Bear"
let noun2 = "Honey"
let adjective = "Grizzly"
let verb = "Hungry"
let place = "Forest"
let adjective2 = "Magical"
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
);

noun = "Bunny"
noun2 = "Carrots"
adjective = "Small Pink"
verb = "Angry"
place = "Small Ground Tunnel"
adjective2 = "Cursed"
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 (Android 11; Mobile; rv:152.0) Gecko/152.0 Firefox/152.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

Welcome to the forum @tyoto748,

When you call a function, should there be a space between the function name and the opening parenthesis?

Happy coding