public class demoSwap{ public static void main(String[] main) { Integer[] intArray = {1, 2, 3, 4, 5}; swap.swap(intArray, 1, 3); System.out.print("New array: "); swap.printArray(intArray); } }