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)
//Code for question 1 goes here//
public void add(int spot, Chicken chick)
//Code for question 2 goes here//
return Arrays.toString(chicks);
public class ArrayOfReferencesQuiz2A
public static void main(String args[]) throws Exception
//Code for question 3 goes here//