Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

My console logs exactly what it is asking me for but I cannot pass step 9 or 10. I am confused because I concatenated the variables correctly and it logs exactly how it’s supposed to read. I’ve tried to play with spacing and checked my cases. I cannot see the problem.

Your code so far

console.log("Hello! I'm your coding fun fact guide!")

let botName = "Fred";
let botLocation = "Space";
let favoriteLanguage = "Javascript";

console.log(botName);
console.log(botLocation);
console.log(favoriteLanguage);

console.log("My name is " + botName + " and I live on " + botLocation + ".");

console.log("My favorite programming language is " + favoriteLanguage + ".");

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:146.0) Gecko/20100101 Firefox/146.0

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

console.log(botName);
console.log(botLocation);
console.log(favoriteLanguage);

If it’s not in the instructions, don’t log it