<html>
<head>
<title>ALVAN XI RPL 2</title>
<style>
p {
color: #fff;
background-color: darkslategrey;
font-size: 20pt;
}
</style>
</head>
<body>
<p id="coba2"></p>
<script>
var siswa = new Array("Wicky", "Subi", "Rajab", "Renaldi")
document.getElementById("coba2").innerHTML = siswa[2];
</script>
</body>
</html>