Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

please resolve these issue as people may asked about it before after i finish the test i am getting an error no matter what i do i cant get step 8 and 15 mainly and the others too

Your code so far

console.log("Hello! I'm your coding fun fact guide!");
botName = 'Deathman';
botLocation = 'America';
favoriteLanguage = 'java';
console.log("My name is " + botName +" and i live on " + botLocation + "." );
console.log("My favorite programming language is " + favoriteLanguage + ".");
let codingFact = ("I absolutly love " + favoriteLanguage + ".");
console.log(codingFact);
codingFact = ("I use " + favoriteLanguage + " very well" + ".")
console.log(codingFact);
codingFact = ("Is it necessary to use " + favoriteLanguage + " for coding" + ".");
console.log(codingFact);

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

You are only passing 1 test with that code. You need to follow all the stories. For example story 2 - please re-read how to declare a variable.as this is missing from your code. There may be other things wrong but that needs addressing.