Build a Teacher Chatbot - Step 5

Tell us what’s happening:

let topic = “arrays”;
let subject = “Python”;

let sentence = Today, you will learn about ${topic} in ${subject}.;
console.log(sentence);
// Output: “Today, you will learn about arrays in Python.”

Your code so far

console.log("Hi there!");

const botName = "teacherBot";

const greeting = `My name is ${botName}.`;
console.log(greeting);

const subject = "JavaScript";
const topic = "strings";

// User Editable Region
let topic = "arrays";
let subject = "Python";

let sentence = `Today, you will learn about ${topic} in ${subject}.`;
console.log(sentence);

// User Editable Region

Your browser information:

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

Challenge Information:

Build a Teacher Chatbot - Step 5

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/workshop-teacher-chatbot/66b59be6ab830800c4df9146.md at main · freeCodeCamp/freeCodeCamp · GitHub

Why did you add this?

let topic = "arrays";
let subject = "Python";