Build a Greeting Bot - Step 8

Tell us what’s happening:

I think I wrote correct code but didn’t work, why?

Your code so far

console.log("Hi there!");
console.log("I am excited to talk to you.");
let bot;
bot = "teacherBot";

let botLocation = "the universe";

console.log("Allow me to introduce myself.");

const botIntroduction = "My name is " + bot + ".";
console.log(botIntroduction);


// User Editable Region

let botLocationSentence;
botLocationSentence = "I Live IN" + botLocation + ".";
 console.log(botLocationSentence);

// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36

Challenge Information:

Build a Greeting Bot - Step 8

Look at the capitalization of the words and the space after ‘in’. What changes do you need to make?