Jak iterować przez tablicę do tyłu Java

for (int counter = myArray.length - 1; counter >= 0; counter--) {
Lovely Llama