Here is my object ,
ocenia=["-23.725012", "-11.350797", "-45.460131"]
I want to print elements of object ocenia.
What i am trying to do is ,
for ( i in ocenia)
   {
      console.log(i)
   }
It is just printing indexes of elements like ,
0 
1 
2
Whats wrong i am doing here ?
 
     
     
     
     
     
    