Tell us what’s happening:
Test 11 is not coming out as correct? I think this is a bug ?? I checks out everything.
Your code so far
console.log("Hello! I'm your coding fun fact guide!");
let botName;
botName = "Antonio";
let botLocation;
botLocation = "Aveiro";
let favoriteLanguage
favoriteLanguage = "C";
console.log("My name is " + botName + " and I live on " + botLocation + ".");
console.log("My favorite programming language is " + favoriteLanguage + ".");
let codingFact;
codingFact = "Most coding languages are written in " + favoriteLanguage + "!";
console.log(codingFact);
codingFact = "Most coding languages are not written in " + favoriteLanguage + ".";
console.log(codingFact);
codingFact = "Most coding languages are not or are written in " + 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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36
Challenge Information:
Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot