My code is working but does not satisfy the condition, any help please?
package fr.codegym.task.task07.task0704;
//import java.io.IOException;
/*
Tournez tableau
*/
public class Solution {
public static void main(String[] args) {
//écris ton code ici
int[] liste = new int [] {5, 10, 16, 17, 9, 3, 4, 46, 97, 89};
//afficher tableau dans l'ordre inverse
for (int i = (liste.length-1); i>=0; i--){System.out.println(liste[i]);}
// afficher tableau
// for (int value : liste) System.out.println(value);
}
}