Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

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

Hi

There may be other things wrong with your code but this should get you started on your way to fixing it.

Firstly you are not asked to create a variable called greetingMessage, just to log the message to the console.

Secondly it is good practice to put a semi colon at the end of each variable and console log.

Thirdly I can’t see that you have reassigned your coding fact variable with new facts a further 2 times. I suggest you look up how to re-assign values of a let variable and have another go.

It is worth going through all the stories one by one and check your code follows them exactly.