To get it to print every 9th element after that, you could either check if i is divisible by 9, or increment i by 9 each time.
Examples:


for (int i = 9; i < testArray.length; i++) {
if (i...