Consider the following sentence: basket (a (o ()) ) and the output when the entire basket object is displayed using the DisplayVisitor: : Basket ( : NFruitList ( : Apple ( ) : NFruitList ( : Orange ( ) : EFruitList ( ) ) ) ) done Guess the class dictionary? Find the UNKNOWNs below. Basket = "basket" FruitList. FruitList : EFruitList | NFruitList. EFruitList = "()". NFruitList = "(" Fruit FruitList ")". Fruit : Apple | Orange. Apple = "a". Orange = "o". Main = .