If you are doing async it doesn't wait. i.e. ``` js setTimeout(function() { //some code }, 1000); ``` The debugger will prematurely exit and you can't debug. How can I make it stay a period of time?