DIRECTIONS : Complete each of the empty methods below.
public Chicken(String n, int a){
//other methods now shown
private Chicken[] chicks;
public Chickens(int size)
public void add(int spot, Chicken chick)
return Arrays.toString(chicks);
public class ArrayOfReferencesQuiz2A
public static void main(String args[]) throws Exception