{"ScriptPreparationCode":"const array = Array.from({length: 10_000}, () =\u003E Math.floor(Math.random() * 10_000_000))","TestCases":[{"Name":"Array.push \u002B Array.reverse","Code":"const temp = [];\r\narray.forEach(x =\u003E temp.push(x));\r\nreturn temp.reverse();","IsDeferred":false},{"Name":"Array.unshift","Code":"const temp = [];\r\narray.forEach(x =\u003E temp.unshift(x));\r\nreturn temp;","IsDeferred":false}]}