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