Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

could someone please explain what I am doing wrong with this trivia bot I understand half the reason but not the entirety of it

I am getting confused about the number thirteen prompt on this trvia bot could someone explain it a bit more clearly to me.
I have added the value already to the coding fact but it keeps saying I should add a new value to it

Your code so far

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

const botName = "botName";

const botLocation = "botLocation";

const favoriteLanguage = "favoriteLanguage";

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

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














Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) 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 back @cgervitzle,

Try giving meaningful values to your botName, botLocation, and favoriteLanguage variables like “triviaBot”, “computer”, and “JavaScript” so you can easily differentiate between the value and the variable name in the console.

You should log "My name is (botName) and I live on (botLocation)."

In this instruction, the names in parentheses are the variables you are asked to concatenate to the surrounding strings. But there is no concatenation here:

Please consider reviewing this theory lecture about how to concatenate strings and variables before moving on:

Introduction to Strings - What Is String Concatenation, and How Can You Concatenate Strings with Variables? | Learn | freeCodeCamp.org

Happy coding