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