Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

why I am facing errors on all lines . please guide me through

Your code so far

console.log("Hello! I'm your coding fun fact guide!");
let botName = "Sam";
let botLocation="Jupiter";
let favoriteLanguage="Java";

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

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

const codingFact= "this is fun with "+ favoriteLanguage +  ".";
console.log(codingFact);

let codingFact= "i love coding with "+favouriteLanguage+ ".";
console.log(codingFact);

let codingFact= "what a fun way to code with  "+favouriteLanguage+".";
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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.4 Safari/605.1.15

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot
https://www.freecodecamp.org/learn/full-stack-developer/lab-javascript-trivia-bot/lab-javascript-trivia-bot

Can you say which user story asks you to create a variable called botIntroduction?

I suggest you go through each of the stories carefully and make sure you are exactly following the instructions.