Exercise 2: A Recursive Stack Trace, Traced Frame by Frame — Possible Solution ==================================================================== THE PROGRAM ------------------------------ fun countDown(n) { if (n <= 0) { return n + "boom"; } return countDown(n - 1); } print countDown(3); RESULT ------------------------------ [line 4] WispRuntimeError: operands of '+' must be two numbers or two strings, got float and str at countDown() (called from line 6) at countDown() (called from line 6) at countDown() (called from line 6) at countDown() (called from line 8) at