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);

numlist would contain 3 items
  • numlist would contain 4 items
  • numlist would contain 5 items
  • numlist would contain 2 items

There are no hints for this question