{"ScriptPreparationCode":null,"TestCases":[{"Name":"Concat","Code":"const arr = [\u0022hello\u0022, true, 7];\r\nconst arr2 = [ 1, 2, 3 ]\r\nconst newArr = arr.concat(arr2)","IsDeferred":false},{"Name":"Spread","Code":"const arr = [\u0022hello\u0022, true, 7];\r\nconst arr2 = [ 1, 2, 3 ]\r\nconst newArr = [...arr, ...arr2]","IsDeferred":false},{"Name":"Push","Code":"const arr = [\u0022hello\u0022, true, 7];\r\nconst arr2 = [ 1, 2, 3 ]\r\nconst newArr = arr.push(arr2)","IsDeferred":false}]}