{"ScriptPreparationCode":"function spliceIt(array){\r\n\tconst indexToRemove = array.findIndex((el) =\u003E el === \u0022asdfeh5\u0022)\r\n array.splice(indexToRemove, 1);\r\n}\r\n\r\nfunction filterIt(array){\r\n array = array.filter((el) =\u003E el !== \u0022asdfeh5\u0022);\r\n}","TestCases":[{"Name":"Splice It","Code":"spliceIt(array, 5);","IsDeferred":false},{"Name":"filter It","Code":"filterIt(array, 5);","IsDeferred":false}]}