Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

Idk why was the mistake

Your code so far

console.log("Hello! I'm your coding fun fact guide!")
let botName="Fabian";
let botLocation="Romania"
let favoriteLanguage="js"
console.log("my name is " +botName+ " and I live on "+ botLocation+ ".")
console.log("My favorite programming language is "+ favoriteLanguage )
let codingFact= favoriteLanguage + " was to make web pages dynamic and interactive, addressing the limitations of static HTML at the time";
console.log(codingFact)
codingFact="He was created by . Brendan Eich, a programmer at Netscape Communications, developed the language in just ten days in May 1995 to be embedded within the Netscape Navigator browser."
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/143.0.0.0 Safari/537.36 OPR/127.0.0.0

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

first, double check capitalization and punctuation

same for this one, double check capitalization and punctuation

you are not using favoriteLanguage in this string

and then, how many times are you asked to assign a value to codingFact? double check you are doing it enough times

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