After the following code runs, how big would the ArrayList "numList" be?
ArrayList numList = new ArrayList(); numList.add(1); numList.add(2); numList.add(3); numList.remove(0); numList.add(4);
There are no hints for this question