If I write out an array the long way in a seperate class such as
public Student [] getArray(){
Student [] studentArray = new Student[3];
studentArray[0] = new Student (”Mel”);
studentArray[1] = new Student (”Jared”);
studentArray[2] = new Student (”Mikey”);
return studentArray;
}
Will the return statement return all the names to my other class that I'm actually going to run, or just one?