Consider the interpreter from Project 4, and assume that obj…

Consider the interpreter from Project 4, and assume that object allocation (as in the given skeleton) is wrongly interpreted by the code    | NewObjectE field ->       (ObjectV (insertDict field 234 emptyDict), state) Interpreting the program           let X = new a       in let W = new b       in  X.a = 3 ! ;           W.b = 5 ! ;         X.a + W.b   end end would then yield which number?