{"ScriptPreparationCode":"uint32Array = new Uint32Array(1e5);\r\nsimpleArray = new Array(1e5);\r\ntemp = 0;\r\nfor(let i = 0; i \u003C 1e5; i\u002B\u002B) {\r\n uint32Array[i] = simpleArray[i] = Math.floor(Math.random() * (2 \u003C\u003C 32));\r\n}","TestCases":[{"Name":"uint32 array random get","Code":"temp = uint32Array[Math.floor(Math.random() * 1e5)];","IsDeferred":false},{"Name":"simple array random get","Code":"temp = simpleArray[Math.floor(Math.random() * 1e5)];","IsDeferred":false}]}