Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

build chat bot trivia
hello i need some advice,i think my codes is raight but i dont know why’s not worked.

Your code so far

console.log("Hello! I'm your coding fun fact guide!");
let botName = "Doctorbot";
let botLocation = "New york";
let favoriteLanguage = "Javascript";
console.log("My name is " + botName +" and I live on " + botLocation +".");
console.log("My favorite programming language is " + favoriteLanguage +".");
let codingFact;
codingFact = favoriteLanguage;
console.log(codingFact);
codingFact = favoriteLanguage;
console.log(codingFact);
console.log("It was fun sharing these facts with you. " + 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/144.0.0.0 Safari/537.36

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

how many times are you asked to assign a value to codingFact? go back through the user stories one by one and make sure you are doing everything

1 Like

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