Hey, soll eine im array gespeicherte Zahlenfolge umgekehrt ausgeben. aber irgendwie bekomm ich das nicht hin, bitte um Hilfe 
Java:
public class Meth1 {
public static int reverseCopy(int []a) {
a = new int [];
for( int i=0; i<rc.length-1;i--){
}
return rc;
}
public static void main(String[] args) {
int[] v= { 1,2,3,4,5,6,7,8,9,10 };
int[] rc= reverseCopy(v);
for (int i=0;i<rc.length;i++)
System.out.print(rc[i]+",");
}
}