Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

s’il vous plait je ne comprend pas bien les question.

Your code so far

console.log("hello! I'm your coding fun fact guide!");
let botName = "kengni";
let botLocation = "cameroun"; 
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;
console.log(codingFact);
codingFact = "right";
console.log(codingFact);
cosole.log("It was fun sharing thes fact 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 Edg/138.0.0.0

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Bienvenue sur le forum

Vous avez une faute de frappe dans le journal de la console.

Vous avez également un problème de casse dans le texte.

Lorsque vous voyez un nom de variable entre parenthèses, vous devez concaténer la variable à la chaîne.

Par exemple, lorsque votre code fait référence à botName, la chaîne affichera kengni.

Bon code !

Tell us what’s happening:

j’essaye de creer un bot javascript mais vue que je ss completement debutant je n’arrive pas a trouver les erreur

Your code so far

console.log("hello! I'm your coding fun fact guide!");
let botName = "kengni";
let botLocation = "cameroun"; 
let favoriteLanguage = "javascript";
console.log("My name is " + botName + " " + "and I live in" + " " + botLocation);
console.log("My favorite programming language is" + " " + favoriteLanguage);
let codingFact = "javascript est facile";
console.log(codingFact);
codingFact = "right";
console.log(codingFact);
console.log("It was fun sharing these facts with you. Goodebye!" + " " + 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 Edg/138.0.0.0

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Bonjour @djeffkengni27

Vous avez également un problème de casse dans le texte.