The Remove Array Element Node deletes the element(s) of an Array at the specified index/indices.
For example, an Array is populated as follows: [0,3,6,9,12]. If the indices1 and 3 are given, the elements at those indices are deleted and the user is left with a new Array: [0,6,12].