Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Tell us what’s happening:

please i need help for this task 14 to 15 have a good weekend

Your code so far

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

let botName= "Byorgus";
const botLocation = "French";
const favoriteLanguage = "Vyontikese";
let codingFact = "My favorite programming language is " + favoriteLanguage + ".";

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

console.log(codingFact);

codingFact = "I lied i hate " + favoriteLanguage + ".";

console.log(codingFact);

codingFact = "HOOOOOOOOM ye shall not torment me any longer " + favoriteLanguage + ".";

console.log(codingFact);

codingFact = `One more fact: I enjoy coding in ${favoriteLanguage} because it’s versatile and powerful.`;
console.log(codingFact);

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36 Edg/145.0.0.0

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

  • 14. You should assign a value to codingFact for the third time that also contains favoriteLanguage, and log it to the console.

  • Failed:15. You should log to the console "It was fun sharing these facts with you. Goodbye! - (botName) from (botLocation)." and add the values of the variables.

Please review User Story #3. Are you meeting that requirement?

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