Tell us what’s happening:
I am to write a code where Coding fact is updated 3 times but try as I might, I can’t progress, I also can’t find the mistake in the code
Your code so far
console.log("Hello! I'm your coding fun fact guide!");
let botName;
botName = "Duncan";
let botLocation;
botLocation = "the internet";
let favoriteLanguage;
favoriteLanguage = "JavaScript";
console.log("My name is " + botName + " and live on " + botLocation + ".");
console.log("My favorite language is " + favoriteLanguage + ".");
let codingFact = "what is fun?" + favoriteLanguge;
console.log(codingFact);
codingFact = "what is harder than python? " + favoriteLanguage;
console.log(codingFact);
codingFact = "what is easy?...." + favoriteLanguage;
console.log(codingFactt);
console.log("It was fun sharing these facts with you. Goodbye! - " + botName " from " + botLocation + ".");
Your browser information:
User Agent is: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Mobile Safari/537.36
Challenge Information:
Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot