I want to pull all of the keys into an array (in the order of the dictionary), but it is automatically sorting them by int value & then converting them back to strings.
i.e.
var _dict = {"2":"How", "1":"are", "3":"you"}
var keys = _dict.keys()
print(keys) # = [1,2,3]