Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

I’m not sure why my code doesn’t pass tests 9, 12, and 13. My output on the console matches what is needed and I’m asking for any advice to help me complete this lesson! Thank you.

Your code so far

console.log("Hello! I'm your coding fun fact guide!");
let botName = "Bob";
let botLocation = "Toronto";
let favoriteLanguage = "Python";

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

favoriteLanguage = "C#";
let codingFact = "I also like " + favoriteLanguage + ".";
console.log(codingFact);

favoriteLanguage = "Java";
codingFact = "I started coding with " + favoriteLanguage + ".";
console.log(codingFact);

favoriteLanguage = "C++";
codingFact = "I'm learning " + favoriteLanguage + ".";
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/137.0.0.0 Safari/537.36

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

why did you change favoriteLanguage?

the test is saying

expected ‘I also like C#.’ to include ‘C++’