Tell us what’s happening:
I am getting the desired location but I don’t understand why test not passing.
Your code so far
console.log("Hello! I'm your coding fun fact guide!");
let botName = 'Gullu';
let botLocation = 'India';
let favoriteLanguage = 'JS';
console.log("My name is " + botName + " and I live in " + botLocation + ".");
console.log("My favorite programming language is " + favoriteLanguage + ".");
let codingFact = favoriteLanguage + " is world's most popular language.";
console.log(codingFact);
codingFact = favoriteLanguage + " is used to build dynamic websites.";
console.log(codingFact);
codingFact = "It was fun sharing these facts with you. Goodbye! -" + botName + " from " + botLocation + ".";
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/131.0.0.0 Safari/537.36
Challenge Information:
Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot