Tell us what’s happening:
I’m not sure what the issue is with my formatting, because it reads correctly on the console log, but the test says I am not using the correct story format or assembling my variables in the correct order
Your code so far
let adjective = "big";
let noun = "snickers";
let verb = "break";
let place = "chicago";
let adjective2 = "bouncy";
let noun2 = "autism creature";
const 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 = "tiny";
noun = "tabby cat";
verb = "eat";
place = "burger boy express";
adjective2 = "tasty";
noun2 = "pink sauce shein chicken wings";
const 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; rv:150.0) Gecko/20100101 Firefox/150.0
Challenge Information:
Build a Sentence Maker - Build a Sentence Maker