Tell us what’s happening:
From task 11 onwards i am not passing but i have tried very much to follow. Can you help me and tell me why i am not passing these tests?
Build a trivia bot that is.
Your code so far
const greetingMessage = "Hello! I'm your coding fun fact guide!";
console.log(greetingMessage)
const botName = "Coding Guide";
const botLocation = "Maldives";
const favoriteLanguage = "Javascript";
console.log("My name is " + botName + " and I live on " + botLocation + ".");
console.log("My favorite programming language is " + favoriteLanguage + ".")
console.log()
let codingFact = "The fun thing about " + favoriteLanguage + " is that it can be used to build many projects."
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 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36
Challenge Information:
Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot