Instruções
Passo 9
Nas lições anteriores, você aprendeu como reatribuir valores a variáveis assim:
let name = "John";
console.log(name); // "John"
name = "Jane";
console.log(name); // "Jane"
Usando reatribuição, atribua a string "professorBot" à variável bot.
O que fazer:
Testes:
- Você deve atribuir a string `"professorBot"` à variável `bot`.
Console