comment itérer à travers un tableau en arrière java

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