import * as assert from "./resources/assert.js";
let array = [];
for (let i = 0; i < 4000000; i++) {
array.push(i);
}
assert.shouldBe(array[i], i);