Build a JavaScript Trivia Bot Step 15

Tell us what’s happening:

I can’t complete step 15 of the assignment… anything I am not seeing? I don’t know what I did wrong.

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

let botName = "Bot";
let botLocation = "your computer";
let favoriteLanguage = "Java Script";

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

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

let codingFact = "Did you know that " + favoriteLanguage + " only took 10 days to develop?";

console.log("Fun fact: " + codingFact);

codingFact = "Did you know that " + favoriteLanguage + " , according to GitHub, is the most popular language in the world";

console.log("Fun fact: " + codingFact);

codingFact = "Did you know that " + favoriteLanguage + " was probably named after Java";

console.log(codingFact);

codingFact = "Did you know that " + favoriteLanguage + " was probably named after Java";

console.log(codingFact);

codingFact = "Did you know that " + favoriteLanguage + " was probably named after Java";

console.log(codingFact);

console.log("It was fun sharing these acts with you. Goodbye! - " + botName + " from " + botLocation + ".");

Your code so far

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

let botName = "Bot";
let botLocation = "your computer";
let favoriteLanguage = "Java Script";

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

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

let codingFact = "Did you know that " + favoriteLanguage + " only took 10 days to develop?";

console.log("Fun fact: " + codingFact);

codingFact = "Did you know that " + favoriteLanguage + " , according to GitHub, is the most popular language in the world";

console.log("Fun fact: " + codingFact);

codingFact = "Did you know that " + favoriteLanguage + " was probably named after Java";

console.log(codingFact);

codingFact = "Did you know that " + favoriteLanguage + " was probably named after Java";

console.log(codingFact);

codingFact = "Did you know that " + favoriteLanguage + " was probably named after Java";

console.log(codingFact);

console.log("It was fun sharing these acts with you. Goodbye! - " + botName + " from " + botLocation + ".");

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:147.0) Gecko/20100101 Firefox/147.0

Challenge Information:

Build a JavaScript Trivia Bot - Build a JavaScript Trivia Bot

Keep in mind those are just tests, not steps. The implementation details are all in the User Stories.

Please review the User Stories and ensure each one is implemented correctly.

I had some mistakes in the Steps before the last one. I redid the assignment an it accepted Check #15

1 Like

Nice work! Glad you got it.

1 Like