Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

I’m stuck on step 14. I have changed so many times, followed the recommendations and all, but it keeps on ending with an error. I’m not sure what else I should do.
Can someone please explain to me what I’m doing wrong or how you pass this step, please?
Thanks

Your code so far

console.log("Hello! I'm your coding fun fact guide!");
let botName = "botsi";
let botLocation = "a space far away";
let favoriteLanguage = "python";
console.log("My name is " + botName + " and I live on " + botLocation + ".");
console.log("My favorite programming language is " + favoriteLanguage + ".");
let codingFact = "Python is named after a TV show";
console.log(favoriteLanguage + " is named after a TV show" + ".")
codingFact = favoriteLanguage + " was started as a hobby project" + "."
console.log(codingFact)
codingFact = "I love " + 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/144.0.0.0 Safari/537.36

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Hi

You have not done what was asked here

let codingFact = "Python is named after a TV show";
console.log(favoriteLanguage + " is named after a TV show" + ".")

You haven’t used the variable favoriteLanguage in the codingFact variable nor have you logged that to the console.