Removes the element at the given index from the array.
RangeError if index is higher or equals than the array's length
auto array = new IntArray([1, 2, 3]); array.remove(0); assert(array == [2, 3]);
See Implementation
Removes the element at the given index from the array.