Construir un Chatbot de Profesor - Paso 6

Cuéntanos qué está pasando:

Estoy intentando todas las posibilidades, no encuentro el error. El texto que escribí está en español porque asi me lo indicó en las instrucciones.

I’m trying all the posibilities, i can’t find the mistake. The text i wrote is in spanish because the instuctions told me so.

Tu código hasta el momento

console.log("Hi there!");

const botName = "teacherBot";

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

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

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


// User Editable Region

let strLengthIntro = `He aquí un ejemplo de uso de la propiedad length en la palabra ${subject}.`;
console.log(strLengthIntro);

// User Editable Region

Información de tu navegador:

El agente de usuario es: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36

Información del Desafío:

Construir un Chatbot de Profesor - Paso 6

Hi @ledandekul

Sometimes the AI translation messes up.

Use the English verson of the text:

Then using template literal syntax, assign the string Here is an example of using the length property on the word [subject]. to the strLengthIntro variable.

Happy coding