After the following code runs, what would the first item in '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