In [[JavaScript|js]], `Math.random()` returns a number with approximately uniform distribution between 0 and 1, inclusive of 0 but not of 1. ```js sleep(Math.random() * 4); ```