When I run my code everything passes except the log. But the console prints my story so I don’t understand what I’m doing wrong.
let adjective = "fast";
let noun = "car";
let verb = "drove";
let place = "monaco";
let adjective2 = "quick";
let noun2 = "brakes";
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);
let secondStory;
adjective = "black";
noun = "screen";
verb = "changed";
place = "japan";
adjective2 = "high";
noun2 = "sky";
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);