Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

I can’t understand the 7th line’s meaning. I tried so many times

Your code so far

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

botName = "Nadim" ; 
botLocation = "Dhaka" ; 
favoriteLanguage = "Javascript";

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

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

let codingFact ; 
codingFact = "Can_jump"; 
let conCat = favoriteLanguage.concat(" ",codingFact); 
console.log(conCat); 

console.log(codingFact); 

codingFact = "can_smile" ; 


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

Welcome to the forum @nadimmatubbar01

Here is the console log.

My name is Nadimand I live on Dhaka.

Note: the botName variable is given a different value.

Happy coding

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.