Assume that aList is a valid ArrayList containing the following:

Wei, Marila, Anna, Neal, Rachel, Jack, Aneesh
Which of the following does not remove Wei from aList?

1. aList.remove("Wei");
2. aList.remove("Wei", 1);
3. aList.remove("Wei",0);

A. Statement I only B. Statement II only C. Statement III only D. Statements I and III only E. Statements II and III only