/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package hello; /** * * @author Student */ public class BasicArrayDemo { public static void main(String args[]){ int value=5; String colorNames[] = {"black", "blue", "cyan", "darkGray", "gray", "green", "lightGray", "magenta", "orange", "pink", "red", "white", "yellow"}; try{ for(int current=0; current<=15; current++ ){ System.out.println("colorNames[] = " + colorNames[current]); } } catch(ArrayIndexOutOfBoundsException e){ System.out.println("Subscript Problem" + e); } } }