What will be printed out if this code is run with the following command line? java myprog good morning public class myprog{ public static void main(String argv[]) { System.out.println(argv[2]); } }
myprog
good
morning
Exception raised: "java.lang.ArrayIndexOutOfBoundsException: 2"