Whаt is the оutput? clаss Shаpe { Shape(String name) { System.оut.println("Shape: " + name); }} public class Test { public static vоid main(String[] args) { Shape circle = new Shape("Circle") { { System.out.println("Anonymous class initializer"); } }; }}