Tell us what’s happening:
I’m stuck at where it said I should log my code using the format “First Story: [first story]”. I’ve tried several times but I still get the error. What am I missing?
Your code so far
let adjective, noun, verb, place, adjective2, noun2;
adjective = "old";
noun = "dragon";
noun2 = "sheep";
place = "cave";
adjective2 = "large";
verb = "hunting";
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);
Your browser information:
User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/151.0.0.0 Safari/537.36
Challenge Information:
Build a Sentence Maker - Build a Sentence Maker