I am currently trying to get the values from a dictionary array, without knowing the key.
[{
"msmittens007": 39717783
}, {
"starboynaseem321": 60806140
}, {
"creeper333888": 32048827
}, {
"simontax": 52222895
}, {
"marissahill55": 44062186
}, {
"tgibs1": 52704223
}, {
"angelsunrise7": 57944274
}, {
"nicks24": 51306000
}, {
"opticbomb": 21804587
}, {
"KhloeTheMoaiOwie": 26598082
}]
My current JSON. I need to be able to get the value attached to the key. I am new to JSON so it is hard for me.
Sorry if a bit ambiguous, but how would I access the value without the key? e.g. instead of jsonTable["msmittens007"]
to get 39717783
, I need to be able to do something like jsonTable[1] = 39717783
I hope you understand.
Thanks!