Tell us what’s happening:
The first time I ran the tests on this everything came back wrong. So then I reset and ran the tests as I went along.
Everything passed until I reached step 8. I continued anyway, ran the tests, and now virtually everything is marked as failing (even steps 1-7 which previously passed, and which I haven’t changed). I’m a little frustrated.
Your code so far
console.log("Hello! I'm your coding fun fact guide!");
let botName = "Harry";
let botLocation = "Revachol";
let favoriteLanguage = "JavaScript";
console.log("My name is " + botName + "and I live on " + botLocation + ".");
console.log("My favorite programming language is " + favoriteLanguage + ".");
let codingFact = "I learnt " + favoriteLanguage "with Kim " + ".";
console.log(codingFact);
codingFact = "I used to talk to Measurehead about " + favoriteLanguage + "in the docks " + ".";
console.log(codingFact);
codingFact = "It's very difficult to learn " + favoriteLanguage + ".";
console.log("It was fun sharing these facts with you. Goodbye!" + botName + "from" + botLocation + ".");
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 JavaScript Trivia Bot - Build a JavaScript Trivia Bot