Never Mind!!
problem was the stuff that I didn't have in which is in bold:
public void readQuestion()
{
System.out.println("How many choices? ");
numChoices = scan.nextInt();
scan.nextLine();
String[] options = new String[numChoices];
System.out.println("Enter the question: ");
question = scan.next
Line();
for(int index = 0; index < options.length; index++)
{
System.out.println("Enter Choice " + (index + 1) + ": ");
options[index] = scan.next();
}
}