Returns an array of objects of the given type with the given size, initialized with null values.
size
null
Array<Unit> arrayOfNulls(Int size) => Array.filled(size, null);