{"ScriptPreparationCode":"var firstList = Array(100).fill(100);\r\nvar secondList = Array(100).fill(\u0022100\u0022);","TestCases":[{"Name":"concat","Code":"const newList = [].concat(firstList, secondList);","IsDeferred":false},{"Name":"Spread","Code":"const newList = [...firstList, ...secondList];","IsDeferred":false},{"Name":"push","Code":"const newList = [].push(...firstList, ...secondList)","IsDeferred":false}]}