help w/ this program
can someone tell me whats wrong with this program? It's in my programming book and i can't get it to work.
class Sundae {
private Sundae() {}
static Sundae makeASundae() {
return new Sundae();
}
}
public class IceCream {
public static void main(String[] args) {
Sundae x = new Sundae.makeASundae();
}
}
I end up getting one of these things ^ under the period in Sundae.makeASundae(). Can you help me?

