The Insert Array Element Node adds an element, or elements, to an Array. These are inserted at a specified index and given a specified value.
For example, an Array is populated as follows: [0,6,12]. If the indices1 and 3 are given and the values 3 and 9 are defined, the elements at those indices are inserted and the user is left with a new Array: [0,3,6,9,12].