Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

The test 14 and test 15 past. Please help me find where is the error and why. Thank you

Your code so far

console.log("Hello! I'm your coding fun fact guide!");
let botName = "Denis";
let botLocation = "Krabi";
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 + 'Bla bla ';
console.log(codingFact);
codingFact = favoriteLanguage + ' is hard';
codingFact = ' is easy' + 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/143.0.0.0 Safari/537.36 Edg/143.0.0.0

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

make sure you did everything needed with codingFact, you are missing one thing and it’s making the last two tests fail