0 / 60 seg.

Given the method below, what will be the contents of the array after calling modifyArray(values)?

public static void modifyArray(int[] data) {
    for(int i = 0; i < data.length; i++) {
        data[i] += 5;
    }
}
int[] values = {2, 4, 6, 8};
modifyArray(values);