slice VS splice VS shift: who is the fastest to keep constant size v2 (version: 0)
100 long list - not 100k
splice and shift win, they mutate list
slice loose, it creates a copy of list
this time only use numbers, not change to strings
Comparing performance of: slice vs splice vs shift