Build a Trivia Bot Test 14 failing no matter what I do

The following is my code. For whatever reason, I am failing test #14: You should assign a value to codingFact for the third time that also contains favoriteLanguage, and log it to the console.

Can someone explain to me why? Or is it a bug with the code tester that would be fixed by changing browsers?

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

let botName = "faqBot";
let botLocation = "your brain";
let favoriteLanguage = "HTML & CSS";

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

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

let codingFact = "Did you know that " + favoriteLanguage + " are markup languages";
console.log("Fun fact: " + codingFact + ".");

codingFact = "For web design, " + favoriteLanguage + " languages are used to create the overall design of a webpage";
console.log(codingFact);

codingFact = "Learning " + favoriteLanguage + " is a great way to start your coding education!";
console.log(codingFact);

console.log("It was fun sharing these facts with you. Goodbye! - " + botName + " from " + botLocation + ".");

You’re logging more than coding_fact here. Try changing that.

I thought that I had tried that, but I suppose not. Thank you!