I have an array, let's call it "array" and inside of the array I have objects like this:
"0 Here is an object"
"4 Here's another object"
"2 Let's put 2 here too!"
"1 What the heck, here's another!"
"3 Let's put this one right here"
I would like to sort the arrays by that number, so it'll turn into this:
"0 Here is an object"
"1 What the heck, here's another!"
"2 Let's put 2 here too!"
"3 Let's put this one right here"
"4 Here's another object"