I have a dictionary:
test_dict = {"1": "one", "3": "three", "2": "two"}
I'd like to create an array of values, but sorted by key, to get something like this:
test_array = ["one", "two", "three"]
Normally, I retrieve values by using test_dict.values(), but since dictionaries are unordered, it messes up my array.