import java.util.*;
public class ReverseEleOfArraylist{
public static void main(String args[]){
ArrayList<String> colors = new ArrayList<String>();
colors.add("Violet");
colors.add("Indigo");
colors.add("Green");
colors.add("Yellow");
colors.add("Orange");
colors.add("Red");
Collections.reverse(colors);
System.out.println("The Reversed Array is :"+colors);
}
}