I have a quiz game. Right now it just goes from one question to another, everytime in the same order. How can I randomise this?
public void nextQuestion() {
questionNum++;
if(questionNum==questions.size()) {
end();
}
else {
showQuestion();
}
}
