brek9370 brek9370 26-04-2024 Computers and Technology contestada What will the following program print to the screen when run? function start() { println(mystery(3, "~") ) ; } function mystery(num, pattern) { var result = "; for (var i = 0; i < num; i++) { result = result + pattern; } return result; }