How can I iterate trough a json with random keys? For example:
{
  "-KI4TtMlcCgy489krrRK" : {
    "name" : "apple",
    "text" : "green"
  },
  "-KI4TycSzSXwSviWQf5C" : {
    "name" : "banana",
    "text" : "yellow"
  },
  "-KI4U11GePHK9IdeROt7" : {
    "name" : "carrot",
    "text" : orange"
  }
}
I am trying to return:
- apple - green 
- banana - yellow 
- carrot - orange 
 
    