Exercise 1: Hand-Tracing the Stack Through a Function Call — Possible Solution ==================================================================== THE PROGRAM ------------------------------ fun add(a, b) { return a + b; } print add(3, 4); TRACE ------------------------------ Top-level script frame: function=