<meta charset="UTF-8">
<input/>
<button>verificar si acerto con el secreto</button>
<script>
var heroes = ["Superman", "Thor", "Batman", "Mujer Maravilla"];
for( var i = 0; i < heroes .length; i++) {
alert(heroes[i]);
}
</script>