the array that contains all the given elements at the index of the source array
insert(['foo', 'bar'], -1, ['hello', 'world']); // ['foo', 'bar', 'hello', 'world']
insert(['foo', 'bar'], 0, ['hello', 'world']); // ['hello', 'world', 'foo', 'bar']
insert(['foo', 'bar'], 1, ['hello', 'world']); // ['foo', 'hello', 'world', 'bar']
insert(['foo', 'bar'], 9, ['hello', 'world']); // ['foo', 'bar', 'hello', 'world']
Returns the array that contains all the given elements at the index of the source array