0 / 60 seg.

What will print when Lambo is instantiated?

class Car {
    String color = "blue";
}
class Lambo extends Car {
    String color = "white";
    public Lambo() {
        System.out.println(super.color);
        System.out.println(this.color);
        System.out.println(color);
    }
}