After the following code runs, would the number 5 get added to the ArrayList?
ArrayList numList = new ArrayList();
numList.add(1);
numList.add(2);
numList.add(3);
numList.remove(0);
numList.add(4);
if(numList.contains(1)){
numList.add(5);
}
There are no hints for this question