Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

My code does not work for step 15. What could be the issue?

Your code so far

console.log("Hello! I'm your coding fun fact guide!");
const botName= "Xavier";
let botLocation="Nairobi";
let favoriteLanguage = "Javascript";
console.log("My name is " +botName+" and I live on " +botLocation+".");
console.log("My favorite programming language is " +favoriteLanguage+".");
let codingFact = favoriteLanguage+" is awesome.";
console.log(codingFact);
codingFact=favoriteLanguage+ " is amazing.";
console.log(codingFact);
codingFact = favoriteLanguage+" is my favorite.";
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/135.0.0.0 Safari/537.36

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Which test is failing? What have to tried to figure out why that test is failing?

double check the string to print, it needs to match exactly