I have an Object:
Object{
         "field1":"fill this field!",
         "field1":"fill this field!",
         "field1":"fill this field!"
}
I need to access the key and value of this Object. How can I transform this Object in Array to use forEach.


