Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

so i’ve been having an issue with instruction number 15 and i tried many methods including pasting (console.log("It was fun sharing these facts with you. Goodbye! - " + botName + " from " + botLocation + “.”):wink: right away and they still logged my goodbye message as having an error. please give me a way to solve this, thanks!

Your code so far

console.log("Hello! I'm your coding fun fact guide!" );
let botName="JYPapi";
let botLocation="your heart";
let favoriteLanguage="HTML";
console.log("My name is "+botName+" and I live on " +botLocation+".")
let codingFact=("My favorite programming language is "+favoriteLanguage+".")
console.log(codingFact)
codingFact="I started learning "+favoriteLanguage+" around 3 months ago."
console.log(codingFact);
codingFact="I like "+favoriteLanguage+" because it is the most simple language ever."
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; rv:153.0) Gecko/20100101 Firefox/153.0

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/lab-javascript-trivia-bot/66ed41f912d0bb1dc62da5dd.md at main · freeCodeCamp/freeCodeCamp · GitHub

Welcome to the forum,

You should log "My favorite programming language is (favoriteLanguage)." to the console.
You should use let to create a codingFact variable and assign it a string that is a fun fact about your bot’s favorite coding language and include the use of the favoriteLanguage variable.

Please review these instructions again. It seems you lost your way in the middle there.

The code has already been posted.