dax w
Results
1
comments of
dax w
trafficstars
```js function print(n){ setTimeout(() => { console.log(n) }, Math.floor(Math.random() * 1000) + n * 1000) } for(var i = 0; i < 100; i++){ print(i) } ```