I'm just starting with this language, but when I want to show some value I do not see anything, any solution?
HTML code
<html>
<head>
<title>Arreglos</title>
</head>
<body>
<script src="arreglos.js"></script>
</body>
</html>
Javascript code
var amigos = {"Ana", "Juan", "Ismael"};
document.write(amigos[0]);