DRAFT
Observed
An array cannot have a length of 0 elements
An array can have a length of 0 elements
We can allocate an array of length zero in exactly the same way we can allocate arrays of any other length:
new int[0]
And we can also use an array initializer instead of specifying the length:
new int[] {}
Students might mistakenly believe that an empty array is not really an array, similar to the mistaken believe that 0 is not really a number.