I am trying to create a student object :
An object named bobby, representing a 21 year-old woman named bobby jean
I am trying to create an object with this constructor code below, but every time I fill in my blank, I am getting this error message "cannot find symbol -variable bobby" :
This is what I have:
// Constructor for objects of class Student
Student(int initialAge, String initialName)
Name of Instance: ________________________
new Student ( _____________v_ , int initialAge
_____________v_) String initialName
Please how would you fill in the blank area?

