Tell us what’s happening:
I would like clarification on what i’m doing wrong.
Your code so far
console.log("Hello! I'm your coding fun fact guide!")
let botName = "Susan";
console.log(botName)
let botLocation ="Nairobi";
console.log(botLocation);
let favoriteLanguage = "English";
console.log(favoriteLanguage);
console.log("My name is " + botName + " and I live on " + botLocation + ".");
console.log("My favorite programming language is " + favoriteLanguage + ".");
let codingFact = "The most spoken language in the world is " + favoriteLanguage;
console.log(codingFact);
codingFact = favoriteLanguage + " came from England.";
console.log(codingFact);
codingFact = "The British mostly speak " + 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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/151.0.0.0 Safari/537.36
Challenge Information:
Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot