Build a Sentence Maker - Build a Sentence Maker

Tell us what’s happening:

You should log your first story using the message “First story: [firstStory]”.

keep having this message i don’t understand what i’m doing wrong

Your code so far

let adjective;
let noun;
let verb;
let place;
let adjective2;
let noun2;
adjective = "heavy";
noun = "cow";
verb = "happy";
place = "spaceship";
adjective2 = "deadly";
noun2 = "rock";
let firstStory;
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); 
let secondStory;
adjective = "flat";
noun = "squirrel";
verb = "hungry";
place = "ship";
adjective2 = "huge";
noun2 = "clouds";
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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36

Challenge Information:

Build a Sentence Maker - Build a Sentence Maker

Welcome to the forum @AD93!

“First story: [firstStory]”

“Second story: [secondStory]”

Just a small issue with capitalization in what you were asked to log and what you did log.

Happy coding!

this means that you should literally write:

First story:

then to the right of the colon, put one space and then put the story text

yeah saw that then replace but still same issue with console.log ("First story: " + firstStory);

Did you also fix second story?

you mean i have to put the whole story instead of firstStory ?

yes but same result for both

Try removing the space between console.log and the first parenthesis after it.

all good !! thanx so much was starting getting crazy lol