Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

I have an issue on the last line of this challenge, I think the activity has a bug.

Your code so far

console.log("Hello! I'm your coding fun fact guide!");
let botName, botLocation, favoriteLanguage;
botName = "jamesBot";
botLocation = "Computer";
favoriteLanguage = "Python";
console.log("My name is " + botName + " and I live on " + botLocation + ".");
console.log("My favorite programming language is " + favoriteLanguage + ".");
let codingFact = "My first favorite Language is " + favoriteLanguage + ".";
console.log(codingFact);
codingFact = "The " + favoriteLanguage + " first fun fact.";
console.log(codingFact);
codingFact = "2nd fun fact " + favoriteLanguage + ".";
console.log(codingFact);
codingFact = "The " + favoriteLanguage + " is best for beginners.";
console.log(codingFact);
console.log("It was fun sharing these facts with you. Goodbye! - " + botName + " from " + botLocation + ".");

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Welcome to the forum @sudo-ja

Try removing line 9

Happy coding