What will be logged to the console?
var a = ['dog', 'cat', 'hen']; a[100] = 'fox'; console.log(a.length);
101
100
3
4