An array.
An integer giving the zero-indexed position of the array element to delete.
The deleted array element, or nil if none was deleted. The return value will also be nil if the deleted element was nil itself.
This function removes an element from an array and compresses the rest of the array to reduce its overall length by one. If the position is beyond the bounds of the array, nothing happens. This function is destructive.