{"ScriptPreparationCode":"xs = new Array(1000).fill(\u0022world\u0022)","TestCases":[{"Name":"flatMap","Code":"xs.flatMap((x) =\u003E [\u0022hello\u0022, x])","IsDeferred":false},{"Name":"for of","Code":"const out = []\r\nfor (const x of xs) { \r\n out.push(\u0022hello\u0022);\r\n out.push(x);\r\n}\r\nreturn out","IsDeferred":false},{"Name":"forEach","Code":"const out = []\r\nxs.forEach( (x) =\u003E { \r\n out.push(\u0022hello\u0022);\r\n out.push(x);\r\n})\r\nreturn out;","IsDeferred":false}]}