Tell us what’s happening:
The last thing doesn’t work. 15 is not working.
Your code so far
console.log("Hello! I'm your coding fun fact guide!");
let botName = 'Bot';
let botLocation = 'Bot Land';
let favoriteLanguage = 'Java';
console.log("My name is " + botName + " and I live on " + botLocation + ".");
console.log("My favorite programming language is " + favoriteLanguage + ".");
let codingFact = favoriteLanguage + " is used for many websites.";
console.log(codingFact);
codingFact = "Did you know " + favoriteLanguage + " and python are two different things?";
console.log(codingFact);
codingFact = "I love " + favoriteLanguage + ".";
console.log(codingFact);
let bye = "It was fun sharing these facts with you. Goodbye! - " + botName + " from " + botLocation +".";
console.log(bye)
Your browser information:
User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36
Challenge Information:
Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot