=== Program === function main() { var e; try { var x = 2; print(x," "); throw ++x + x; } catch(e) { print(e,"\n"); } } // 2 6 or 2 5 === Output === Result: null-value Output Entity: standard-out 2," ",6,"\n"