Exercise Set 2, question 3 /** Returns a string representing key information about this slow fish. * @return a string indicating the fish's ID and location **/ public String toString() { return "SlowFish " + super.toString(); }