{"ScriptPreparationCode":"function spliceIt(array, element){\r\n const index = array.indexOf(element);\r\n if (index \u003E -1) array.splice(index, 1);\r\n}\r\n\r\nfunction filterIt(array, element){\r\n array = array.filter(el =\u003E el !== element);\r\n}","TestCases":[{"Name":"Splice It","Code":"spliceIt(array, i5);","IsDeferred":false},{"Name":"filter It","Code":"filterIt(array, i5);","IsDeferred":false}]}