{"ScriptPreparationCode":"window.bigArray = (new Array(10000)).fill(null).map((el, index) =\u003E index);","TestCases":[{"Name":"array[index]","Code":"\r\nfor(let index = 0; index \u003C 10000; index \u002B\u002B) {\r\n const current = bigArray[index];\r\n console.log(current);\r\n}","IsDeferred":false},{"Name":"array.pop()","Code":"for(let index = 0; index \u003C 10000; index \u002B\u002B) {\r\n const current = bigArray.pop();\r\n console.log(current);\r\n}","IsDeferred":false}]}