Tell us what’s happening:
Can’t pass step 14 but I typed it the same way as second story
Your code so far
let adjective;
let noun;
let verb;
let place;
let adjective2;
let noun2;
let firstStory;
adjective =("fearless")
noun =("dragon")
verb =("marching")
place =("cave")
adjective2 =("gigantic")
noun2 =("fish")
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 =("big")
noun =("dinosaur")
verb =("walking")
place =("rock")
adjective2 =("wide")
noun2 =("crocodiles")
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/605.1.15 (KHTML, like Gecko) Version/26.5.2 Safari/605.1.15
Challenge Information:
Build a Sentence Maker - Build a Sentence Maker