public class Student {    //fields   private int PantherID;…

public class Student {    //fields   private int PantherID;   private String name;   private double GPA;   public Student(int PantherID, String n, double g) {        this.PantherID = PantherID;        name = n;        GPA = g;        studentCount++;    }        public void setPantherID(int pid) {        PantherID = pid;    }} Your task is to create a Student object named stu1 with your PantherID, name, and GPA  as parameters and then call the setPantherID() method on stu1 to change your PantherID to 123456.   public class BankAccountDemo(){      public static void main(String[] args){           //Your code here      }}