What will be the output of the following program?
public class Confusing {
public Confusing(Object o) {
System.out.print("-Confusing Object-");
}
public Confusing(double[] d) {
System.out.print("-Confusing Double-");
}
public static void main(String[] args) {
new Confusing(null);
new Confusing(null);
}
}