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