Suppose that we are given the following code:
int[] myArray = {1, 3, 5, 7, 9, 11, 13, 15};
for (int i = 0; i < myArray.length; i++) {
myArray[i] = 10 - myArray[i];
}
After it is executed what will the array myArray contain?( Please explain in details)