Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

i can’t seem to pass the test for 8,9,13,14,15 i think i miss something here.

Your code so far

console.log("Hello! I'm your coding fun fact guide!");

let botName;
botName = "Jarvis";
console.log(botName);

let botLocation;
botLocation = "Outer space";
console.log(botLocation);

let favoriteLanguage;
favoriteLanguage = "Javascript";
console.log(favoriteLanguage);

console.log("My name is " + botName + " and I live on " + botLocation + ".");

console.log("My favorite programming language is " + favoriteLanguage + ".");

let codingFact;
codingFact = "It's hard but fun and learnable on " + favoriteLanguage + ".";
console.log(codingFact);

codingFact = "As long as you dedicated to learn " + favoriteLanguage + ".";
console.log(codingFact);

codingFact = "Just keep coding until you learn on " + 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/144.0.0.0 Safari/537.36 Edg/144.0.0.0

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

please remove the extra console.logs

and ensure there is proper spacing in the string as mentioned in the test.

thanks for the help.