I am executing the following code snippet on browser console.
console.log(
setTimeout(function(){
    console.log('a');
},200));This gives me two outputs. First output is a random number(that is what i thought) and second is a. While I understand that the second output is normal, what is the first random number that is being generated in console.

 
     
    