Porque esse código resulta o exemplo.lenght como undefined?
resultado ao rodar no chrome:
1,2,3,6,7,8 undefined
<script>
var exemplo = [1,2,3,6,7,8];
document.write(exemplo);
document.write("<br>");
document.write(exemplo.lenght);
</script>