asi mero con alertas y texto solo faltaba iniciar desde 0 porque los arrays inician en cero
<meta charset="UTF-8">
<script>
var heroes = ["Superman", "Thor", "Batman", "Mujer Maravilla"];
for( var i = 0; i < heroes.length; i++) {
alert(heroes[i]);
document.write(heroes[i]);
document.write("<br>");
}
</script>