<meta charset = "UTF-8">
<h1>PROGRAMA QUE NO EXCLUYE A SUPERMAN</h1>
<script>
var heroes = ["Superman", "Thor", "Batman", "Mujer Maravilla"];
for( var i = 0; i < heroes.length; i++) {
alert(heroes[i]);
}
</script>