{"ScriptPreparationCode":null,"TestCases":[{"Name":"push","Code":"let arr = [];\r\nconst maxWidthPixels = 20;\r\nconst maxHeightPixels = 20;\r\nfor (let i = 0; i \u003C= maxHeightPixels; i\u002B\u002B) {\r\n for (let j = 0; j \u003C= maxWidthPixels; j\u002B\u002B) {\r\n const hex = \u0060${i}${j}\u0060;\r\n arr.push(hex);\r\n }\r\n}","IsDeferred":false},{"Name":"spread operator","Code":"let arr = [];\r\nconst maxWidthPixels = 20;\r\nconst maxHeightPixels = 20;\r\nfor (let i = 0; i \u003C= maxHeightPixels; i\u002B\u002B) {\r\n for (let j = 0; j \u003C= maxWidthPixels; j\u002B\u002B) {\r\n const hex = \u0060${i}${j}\u0060;\r\n arr = [...arr, hex]\r\n }\r\n}","IsDeferred":false}]}