Hi there, I'm teaching myself about inner classes and am just practicing some code to test what I've learnt. Unfortunately I have got stuck instantiating a object, the following is my code. Would be grateful if anyone could assist me: public class uni { public uni() { } public class Student{ String firstName; String secondName; public Student(String firstName, String secondName){ this.firstName ...