{"ScriptPreparationCode":"const array = Array.from({length: 10_000}, () =\u003E Math.floor(Math.random() * 10_000_000));\r\nconst indexToDelete = 7500;\r\nconst deleteCount = 500;","TestCases":[{"Name":"Array.filter","Code":"const temp = [...array];\r\nreturn temp.filter((x, i) =\u003E i \u003C indexToDelete || i \u003E= indexToDelete \u002B deleteCount);","IsDeferred":false},{"Name":"Array.splice","Code":"const temp = [...array];\r\ntemp.splice(indexToDelete, deleteCount);\r\nreturn temp;","IsDeferred":false}]}