Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

Created a Variable
Gave it a value with a string and favoriteLanguage as part of it. But it doesn´t work. Please help

Your code so far

console.log("Hello! I'm your coding fun fact guide!")
let botName = "Egon"
let botLocation = "Sweden"
let favoriteLanguage = "Javascript"
console.log("My name is " + botName + " and I live on " + botLocation + ".")
console.log("My favorite programming language is " + favoriteLanguage + ".")
let codingFact 
codingFact = "Did you know " + favoriteLanguage + " was founded in 1995?"

Your browser information:

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

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Welcome to the forum @Hansburger !

Please declare and assign to coding_fact all on the same line, and don’t forget to log it.

Happy coding!