h = {"one":1, "two":2, "three":3}
for (x in h) print(x);
/*
two
one
three
*/
for (y of h) print(y);
2
1
3