Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot Step 15

Tell us what’s happening:

No matter how I tried, I cannot pass step 15. Not sure if it’s a space issue or something else.

Your code so far

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

let botName = "professorBot"
let botLocation = "outerspace"

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

let favoriteLanguage = "JavaScript"
let codingFact = "My favorite programming language is" + " " + favoriteLanguage + "."
console.log(codingFact)

codingFact  = favoriteLanguage + " " + "was created 2 weeks ago" + "."
console.log(codingFact)

codingFact  = favoriteLanguage + " " + "is so much fun" + "."
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/151.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 @LegendStar-1

You are not asked to create an introduction variable or log that variable to the console.

You are not asked to assign this to a variable.

You should log "My favorite programming language is (favoriteLanguage)." to the console.

Happy coding