What will happen when you compile and run the following code:

java X arg1 arg2
public class X
{
    public static void main(String argv[])
    {
        System.out.println(argv[2])
    }
}

A) Output: arg1
B) Output: arg2
C) Exception: "ArrayIndexOutOfBoundsException"
D) Error: "Unresolved symbol 'System'."
E) Output: null