Class 15:
public static int find(String[] list, String target) { for (int i=0;i<list.length;i++) if (list[i].equals(target)) return i; return -1; }