I am trying to remove an object from an ArrayList, but I keep getting an IndexOutOfBounds Error. Now there is plenty information available why this happens when iter
The remove method expects an index and it removes an item at the specified index. You are passing a char, thus it is converted to an integer 65.
remove