Help-me problem array

Help-me problem array

my array is returned php this form:
Array
(
    [0] => Array
        (
            [Sua senha deve ser maior que 4 caracteres e menor que 20] => 1
        )

    [1] => Array
        (
            [O email lucasabner07@hotmail.com já está cadastrado no sistema. Se você for ... clique aqui. Se não tente um outro email] => 1
        )

)

My objective is Manipulate this array to use the key as message and value as the message type, if it is 1 an action if another action.
And main array I want to use as message numbers. If it's 2 I want a list with the message. Example:
      1. Sua senha deve ser maior que 4 caracteres e menor que 20
  2. O email lucasabner07@hotmail.com já está cadastrado no sistema. Se você for ... clique aqui. Se não tente um outro email
The number 1 indicates which format i will use from css.
My problem is that I can not use the .length method (returned undefined) for the array count, and I do not know any other way to run my project.
Help-me!