Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

Help got most of it correct i think just need some help on picking out what is wrong

Your code so far

console.log("Hello! I'm your coding fun fact guide!");
const botName = "steve bot";
const botLocation = "the universe";
const favoriteLanguage = "Javascript";

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

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

let codingFact = favoriteLanguage + " is one of the most popular coding languages ";
console.log(codingFact);

codingFact = favoriteLanguage + " Is versatile ";
console.log(codingFact);

codingFact =  favoriteLanguage + " has a very active community that supoports each other ";
console.log(codingFact);

console.log(" It was very 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/152.0.0.0 Safari/537.36

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/lab-javascript-trivia-bot/66ed41f912d0bb1dc62da5dd.md at main · freeCodeCamp/freeCodeCamp · GitHub

Welcome to the forum @Shooterblue

Do not add any extra space at the start of the log, as the tests do not expect them.

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

You I instead of i for the pronoun in and i live

Then check the spacing and punctuation for the rest of the console logs.

Happy coding