I have an array and i need to remove the top most 0 key, and leave the array with the following structure:
[array(24)]
0:{...}
1:{...}
2:{...}
3:{...}
until last key (24)
Right now this is how the array is:
I have tried many methods like assign, flat, array_shift, Object.keys(), Object.values(), and others without any luck.