Ad
  • Default User Avatar

    Hi, do I have to leave all the code below intact? Do I just have to replace the TODO?
    In other words, do I have to leave the "return new Bagel();" there or can I replace it with something else?

    public class BagelSolver {

    public static Bagel getBagel() {
    // TODO : Implement me.
    return new Bagel();
    }

    }