Imagine having an object structured like this.
var foo = {
"dfsghasdgsad":{
"name":"bob",
"age":"27"
}
};
The variable foo will consistently only have one object, but the key is dynamically created. How can I access the values "bob" and "27" in a scenario where the generated key name is unknown?