What is output by the code below?
public String toString() {
return x + " " + y + " " + c;
public class Beluga extends Whale
System.out.println(back());
public String toString() {
return "class Beluga " + super.toString();
//code in the main of another class
Whale flipper = new Beluga();
System.out.println(flipper);