Package java.util
Class ArrayList
Description:
Removes the element at the specified position in this list. Shifts any subsequent elements to the left.
Example
aList.remove(3);
The example above removes the specified element from the ArrayList.