DRAFT
Observed
The typeof operator applied on an array returns 'array'
The typeof operator applied on an array returns 'object'
The typeof operator returns a proper result for primitive types (Undefined, Null, Boolean, Number, String, Symbol, BigInt).
It does not discriminate between different kinds of objects. JavaScript arrays are standard objects and for this reason typeof returns
the string object when applied on an array.
