Say my storage looks like this:
1 - turkey
2 - chicken
3 - beef
4 - fish
If I delete chicken
, I'd want to update it to:
1 - turkey
2 - beef
3 - fish
I also need a way to re-order, so if I say fish
should be first, I'd want it to update to:
1 - fish
2 - turkey
3 - beef
What is the best way to go about doing this?