I'm learning to program, i need my quiz random questions not to be repeated. Java - Android Studio
##my code:
quizModalArrayList = new ArrayList<>();
random = new Random();
getQuizQuestion(quizModalArrayList);
currentPos = random.nextInt(quizModalArrayList.size());
private void getQuizQuestion(ArrayList<QuizModal> quizModalArrayList) {
quizModalArrayList.add(new QuizModal(R.drawable.prolinfocitos, "b", "b", "c", "dd","b"));
quizModalArrayList.add(new QuizModal(R.drawable.prolinfocitos, "b", "b", "c", "dd","b"));
quizModal there are more lines of code, but I believe they are unrelated to the problem.
any help? Thanks