Tell us what’s happening:
You should log to the console “It was fun sharing these facts with you. Goodbye! - (botName) from (botLocation).” and add the values of the variables. i need help on this, i am just learning JavaScript
Your code so far
console.log("Hello! I'm your coding fun fact guide!");
let botName = "teacherBot";
let botLocation = "lagos";
let favoriteLanguage = "Python";
console.log("My name is " + botName + " and I live on " + botLocation + ".");
console.log("My favorite programming language is " + favoriteLanguage + ".");
let codingFact = "Did you know that " + favoriteLanguage + " is one of the pooular progarmming language in the world?";
console.log(codingFact);
codingFact = favoriteLanguage + " is great for web development, data science and automation.";
console.log(codingFact);
codingFact = favoriteLanguage + " is used by millions of developers around the world.";
console.log(codingFact);
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36
Challenge Information:
Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot