How do I take a String[], and make a copy of that String[], but without the first String? Example: If i have this...
String[]
String[] color
String[] colors = {"Red", "Orange", "Yellow"}; String[] copy = new String[colors.length - 1]; System.arraycopy(colors, 1, copy, 0, colors.length - 1);