I am retrieving JSON data with the following format:
{
"first": "Data1",
"second": Data2,
"third": "Data3",
"fourth": "Data4",
"Some random ID": "Data5"
}
I am trying to find the last left hand argument in this JSON, so "Some random ID". I do not know the random ID, so I am just trying to get the last Dict in the JSON's left hand argument. How do I obtain "Some random ID"?