Check high school subjects in Java

Question: Using Java, write a program to compare three Array Lists containing a student high school subjects and return the subjects they passed. The program will be used by the University of Java administration staff to check minimum requirements. Assume all Array Lists are to be created in this Java program without any user input. Assume at this time, there will be no changes to the Array Lists once they are created. An Array List must include all subjects offered by Alberta public school system. Another Array List must include the subject the students has taken. Finally a third Array List must include only the subjects which the students has scored over 85% final grade. Student must obtain at least 85% overall grade to meet the minimum requirements (“passed”) for the Computer Science program.

Subjects offered: Math, Calculus, Chemistry, Biology, Physics, English, Social Studies, Psychology, French, Music, German, and Hindi

Enrolled subjects: Chemistry, Math, Calculus, Physics, Social Studies, French, English, and Biology

Subject with over 85%: English, Calculus, Social Studies, Physics, Math, and Chemistry

Do not change the order in which these subjects appears on each Array Lists.

public class SubjectsPassed{
    public static void main (String [] args){
        String[] allSubjects = new String[]{"Math", "Calculus", "Chemistry", "Biology", "Physics", "English", "Social Studies", "Psychology", "French", "Music", "German", "Hindi"};
        String[] enrolSubjects = new String[]{"Chemistry", "Math", "Calculus", "Physics", "Social Studies", "French", "English", "Biology"};
        String[] successSubjects = new String[]{"English", "Calculus", "Social Studies", "Physics", "Math", "Chemistry"};
         ArrayList<String> intersect;
         intersect = findIntersect (allSubjects, enrolSubjects, successSubjects);
        System.out.println("Student has the following aptitude: " + intersect);
    }
    public static ArrayList<String> findIntersect (String [] allSubjects, String [] enrolSubjects, String [] successSubjects){
        ArrayList intersectNew = new ArrayList();
        for (int i = 0; i < allSubjects.length; i++){
            for (int j = 0; j < enrolSubjects.length; j++){
                for (int k = 0; k < successSubjects.length; k++){
                    if (allSubjects[i].equals(enrolSubjects[j]) && enrolSubjects[j].equals(successSubjects[k])){
                        intersectNew.add(allSubjects[i]);
                    }
                }
            }            
        }
        return intersectNew;
    }
}

Output:
Student has the following aptitude: [Math, Calculus, Chemistry, Physics, English, Social Studies]