Which one of the following is the correct header for a method named arrMeth that is called like this: arrMeth(intArray); // intArray is an integer array of size 3? 1) public static void arrMeth(int[] ar) 2) public void arrMeth(int[] ar) 3) static void arrMeth(int[] ar) 4) void arrMeth(int[] ar)