/* Exercise 7.2: while-loop Code a function named getBigNumber Keep prompting the user to type in a number Only stop asking if the number is bigger than 1000 Otherwise prompt the user again */ function getBigNumber() { // FILL IN YOUR ANSWER HERE // Use console.log to debug and print out the received number in the consolex } getBigNumber();