/** ArrayCopyDemo.java * Exercise 4.2 * Download and run this, see course notes for instructions. */ import java.io.*; public class ArrayCopyDemo { public static void main(String[] argv) { // create a new integer array int N = 12; // length of array int[] array1 = new int[N]; System.out.print("array1 = "); // assign some arbitrary values to the array elements for (int i=0; i