I\'m learning Java on my own; and therefore the code below has no function other than for learning/testing.
Essentially I\'m trying to modify the elements of an Inte
for (int i = 0; i< copyArray.length; i++) { copyArray[i] = new Integer(x /2); }
should work.