ok same assignment(discussed in the question abt mutators) new problem, in my class gorilla, we have to give it a pet cat with the accessors and mutators for the pet cat in the gorilla class... this is what I have so farprivate int Gweight; private String Gname; private Cat pet; private String cat; // Java made me add this variable for whatever the reason (the previous code used didn't work for some reason) public Cat getPet() { return pet; } public void setPet(String c) { this.cat = c; //this is the problem, I was wondering why it can't be this.pet=c; instead } //the rest of the coding is fine my prof checked it earlier today