Como iterar através de uma matriz para trás java

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