Construye un Bot de Saludos - Paso 10

Cuéntanos qué está pasando:

no puedo resolver esta ejercicio en freecodecamp, no se si es un bug en la consola

bot = “professorBot”;

let nicknameIntroduction;
nicknameIntroduction = "Mi apodo es " + bot + “.”;
console.log(nicknameIntroduction);

Tu código hasta el momento

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);

const botLocationSentence = "I live in " + botLocation + ".";
console.log(botLocationSentence);


// User Editable Region

bot = "professorBot";

let nicknameIntroduction;
nicknameIntroduction = "Mi apodo es " + bot + ".";
console.log(nicknameIntroduction);

// User Editable Region

Información de tu navegador:

El agente de usuario es: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36

Información del Desafío:

Construye un Bot de Saludos - Paso 10

The instructions should say, "My nickname is ".