JavaScript básico - Declara variables de JavaScript

Cuéntanos qué está pasando:
Describe tu problema en detalle aquí.

Tu código hasta el momento

var myName = "Joel"
var myName = "Rafael";

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/105.0.0.0 Safari/537.36

Desafío: JavaScript básico - Declara variables de JavaScript

Enlaza al desafío:

En este ejercisio debes creer una variable llamada myName. So esto.

redacted by moderator

You can only declare a variable once. You can’t use “var” on the same variable twice. Also, you weren’t told to initialize it, like giving it the value of “Joel” or “Rafael”. You also have to put a semicolon (;) at the end.

Thank you for being helpful, but this is a learning platform so please don’t give and answer that they can just cut and paste, especially for curriculum problems. Please guide them to the answer.