// DrJava saved history v2 // declare and create an integer array int myArray[] = {31, 41, 5, 92, 6, 53, 58, 979, 323,84626}; // print it out ArrayExamples.printIntArray(myArray); // switch items at index 2 and index 4 ArrayExamples.switchIt(myArray, 2,4); // print it out - verify that they were switched ArrayExamples.printIntArray(myArray); // we ran out of time - had to do course evaluation