I'm struggling to log this on console. Pls help

10

11

12

13

14

Step 8

The next message from the bot will concern the bot’s location.

Create a variable called botLocationSentence.

Then use string concatenation with the + operator to join the string "I live in " with the botLocation variable followed by a period (.).

Assign this value to the botLocationSentence variable.

Then, log the value of botLocationSentence to the console.

what is your code for this step? also can you share the link to the step?

let botIntroduction = “Thato”;

console.log("My name is " + botIntroduction + “.”);

Build a Greeting Bot: Step 7 | freeCodeCamp.org

please read again the instructions, it asks to give to the new variable the sentence using the bot variable for the name, and then to log botIntroduction

1 Like

Problem solved. Thank you