Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

It appears that steps 8 and 15 will not approve no matter how many changes i make. I am very confused

Your code so far

console.log("Hello! I'm your coding fun fact guide!")
let botName;
botName = ("Adam ");
let botLocation; 
botLocation = ("America ");
let favoriteLanguage 
favoriteLanguage = ("JavaScript ");
console.log("My name is" + botName + "and I live on " + botLocation + ".");
console.log("My favorite programming language is " + favoriteLanguage + ".");
let codingFact = ("codingFactX " + favoriteLanguage);
console.log(codingFact);
codingFact = "codingFactY " + favoriteLanguage 
console.log(codingFact)
codingFact = "codingFactZ " + 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/149.0.0.0 Safari/537.36 OPR/133.0.0.0

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 @mauricej,

It looks like you are trying to force the spacing in your variable values. Try handling the spacing in your string concatenations instead.

Happy coding