Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

I have played around with this and searched but I cannot get step 14 to go good. Is it a syntax issue I am missing or something with the program I do not get what I am missing.

Your code so far

console.log("Hello! I'm your coding fun fact guide!");
let botName = "steve";
let botLocation = "place";
let favoriteLanguage = "java";
console.log("My name is " + botName + " and I live on " + botLocation + ".");
console.log("My favorite programming language is " + favoriteLanguage + ".");
let codingFact = "In " + favoriteLanguage + " bool is a funny word!";
console.log (codingFact);
codingFact = "why why " + favoriteLanguage + " I has a headache!";
console.log(codingFact);

codingFact = "Is not working" + 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/134.0.0.0 Safari/537.36

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

confront this with the other times you used console.log, do you see a difference?