Print an integer array. The output from the array of 4 integer elements should be:
1 2 3 4
The numbers must be on new lines with no spaces.
public class PrintIntegerArray { public static void main(String[] args) { //int[] fourElements = /* Finish ME */ PrintingIntArray(fourElements); } public static void PrintingIntArray(int[] array) { /* FINISH ME */ } }