I tried the following but it doesn't work.
$index = 2;
$collection->put($index, $item4);
For example if $collection looks like this:
$collection = [$item1, $item2, $item3];
I'd like to end up with:
$collection = [$item1, $item2, $item4, $item3];