What should this code do? method x { print "X" return 1 } method y { print "Y" return 2 } method foo { try { return x } finally { return y } } print(foo) -Michael