Syntax DELETE(array, index)Usage examples Example 1FormulaDELETE(["a", "b", "c"], 1)Output1[2 "a",3 "c"4]CopyExample 2Accepts negative indexes.FormulaDELETE(["a", "b", "c"], -1)Output1[2 "a",3 "b"4]Copy