Cuéntanos qué está pasando:
Hola. No logro pasar el siguiente paso:
You can also assign the value of a variable to another variable. For example:
Código de ejemplo
let first = “One”;
let second = “Two”;
second = first;
The second variable would now have the value “One”.
To see this in action, change your secondCharacter assignment from “Test” to your character variable.
Then open the console to see what gets logged.
Tu código hasta el momento
let character = 'Hello';
console.log(character);
character = "World";
let secondCharacter = 'character';
// User Editable Region
secondCharacter = "character";
let second = "One";
// User Editable Region
console.log(secondCharacter);
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/131.0.0.0 Safari/537.36
Información del Desafío:
Introducción a JavaScript aprendiendo a construir un Generador de Pirámide - Step 11