I'm trying to return an array. Consider the following code.
public Quiz[] getMark(){
}
This is what i have as the return method. I want to return all the elements in the array under this method. I have to use return and the return type has to be Quiz[]
How would i start off?