#19 updated "async-fs" to not be a benchmark for the [overridden Math.random](https://github.com/WebKit/JetStream/blob/3f5a114712230851021bf8c2a1d81d8058a088f8/JetStreamDriver.js#L721-L733) function. Can the same change to applied to "sync-fs"? Replacing `view[i] = (Math.random() * 255) >>> 0;` with `view[i] = i` in `randomFileContents` shows that: - V8 spends about ~75% of its time evaluating `Math.random()`. - SpiderMonkey spends about ~85% of its time evaluating `Math.random()`.