Tell us what’s happening:
I receive an error on # 14 and #23 when I try to console log the firstStory and the secondStory. It mentions spacing but I am unsure
Your code so far
Dont mind the cohesiveness, I have just been trying to get the spacing right.
let adjective = "Professional"
let noun = "Hooper"
let verb = "fighting time"
let place = "San Diego"
let adjective2 = "huge"
let noun2 = "Tacos"
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);
adjective = "Amateur"
noun = "Football"
verb = "workout time"
place = "City Heights"
adjective2 = "small"
noun2 = "Burgers"
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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36
Challenge Information:
Build a Sentence Maker - Build a Sentence Maker