<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Superman quedó fuera por un pelo</title>
</head>
<body>
<h2>Superman quedó fuera por un pelo</h2>
<!--El error en este codigo fue que inicializo la variable "i" en 1 por lo tanto el bucle empezo a
contar desde thor ya que los indices inician desde 0 para solucionarlo hay que iniciar la variable "i"
en 0 para que cuente desde Superman
-->
<script>
var heroes = ["Superman", "Thor", "Batman", "Mujer Maravilla"];
for( var i = 0; i < heroes.length; i++) {
alert(heroes[i]);
}
</script>
</body>
</html>