Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

I’m still stuck on the lastobjective which is the gooodbye message

Your code so far

console.log("Hello! I'm your coding fun fact guide!");
let botName = "Moby";
let botLocation = "Apple";
let favoriteLanguage = "JavaScript";
console.log("My name is " + botName + " and I live on " +  botLocation + ".");
console.log("My favorite programming language is " + favoriteLanguage + ".");
let codingFact = (favoriteLanguage + " is awesome" + "!");
console.log(codingFact);
codingFact = (favoriteLanguage + " was invented for website functionality and interactivity" + ".");
console.log(codingFact);
codingFact = (favoriteLanguage  + " rules the world" + ".");
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
https://www.freecodecamp.org/learn/full-stack-developer/lab-javascript-trivia-bot/lab-javascript-trivia-bot

How are you stuck? What debugging have you tried?

fixing the spacing in the last line of code and other small details

thelast line of code is what im stuck on

nevermind, i found it EDIT: oh actually i didnt

i tried deleting the parentheses from the variable names as well as adding one pair

i even tried deleting favorite language

anyone??? i really do need help

Be patient, please. Don’t spam the forum or your account will be locked.

Hi @Sinan

Try reducing the number of concatenations in your last console log.

Happy coding