Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

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

Your code so far

console.log("Hello! I'm your coding fun fact guide!");
let botName="botName";
let botLocation="botLocation";
let favoriteLanguage="favoriteLanguage";
console.log("My name is " + botName +" and I live on "+ botLocation + ".")
console.log("My favorite programming language is " + favoriteLanguage + ".")
let codingFact =  'New stages in learning ' + favoriteLanguage;
console.log(codingFact);
codingFact = favoriteLanguage + ' is the hardest programming language I have encounter!';
codingFact = favoriteLanguage + " is world's most popular language.";
console.log(codingFact);
codingFact = favoriteLanguage + " is used to build dynamic websites.";
console.log(codingFact);
codingFact = favoriteLanguage + " is used to cost dynamic websites.";
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 Edg/134.0.0.0

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot
https://www.freecodecamp.org/learn/full-stack-developer/lab-javascript-trivia-bot/lab-javascript-trivia-bot

The lab requires logging codingFact to the console exactly three times.

These two lines are unnecessary since you have already met the lab’s requirements.