{"ScriptPreparationCode":"var arr = new Array(15000);\r\narr.fill({ id: 0 });\r\narr = arr.map((el, idx) =\u003E el.id = idx);\r\nvar foo = Math.floor(Math.random() * 15000);","TestCases":[{"Name":"forEach","Code":"let indexes = [];\r\narr.forEach((num) =\u003E indexes.push(num\u002B1));","IsDeferred":false},{"Name":"map","Code":"const indexes = arr.map(num=\u003Enum\u002B1)","IsDeferred":false},{"Name":"for","Code":"let indexes = [];\r\nfor(index of indexes){\r\nindexes.push(index\u002B1)\r\n}","IsDeferred":false}]}