`
Codigo Anterior
var heroes = ["Superman", "Thor", "Batman", "Mujer Maravilla"];
for( var i = 1; i < heroes.length; i++) { alert(heroes[i]); }
ARREGLO: La variable para inicializar el for, debe emepezar de cero, ya que los arreglos empiezan desde cero: var heroes = ["Superman", "Thor", "Batman", "Mujer Maravilla"];
for(var i = 0; i < heroes.length; i++) { alert(heroes[i]); }
`