Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

My code shows all errors except the first declaration of codingFact

Your code so far

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

let botName = "Triviabot";
let botLocation = "DigitalSpace";
let favoritelanguage = "Javascript";

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

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

let codingFact = ("My bot's favorite lanuage is" + favoriteLanguage + ".");

console.log(codingFact);

codingFact =("My bot's favorite language is " + favoriteLanguage + ".");

console.log(codingFact);

codingFact =("My bot's favorite language is " + favoriteLanguage + ".");

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/138.0.0.0 Safari/537.36

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Welcome to the forum @rahuljujjavarapu

Did you see the message in the console?

SyntaxError: unknown: Unexpected token, expected "," (23:85)

  21 | console.log(codingFact);
  22 |
> 23 | console.log("It was fun sharing these facts with you. Goodbye!-" +  botName + "from" botLocation + ".");
     |                                                                                      ^

Happy coding

I didn’t see any message in console. All the tests not being passed except the first variable of codingFact. I understand the concatenation is missing in line 23.

fix the missing concatenation and try again, how do the tests go after that?