I have an array:
$array = array(
'001' => '555',
'002' => '666',
'003' => '777'
);
I wish to get the key & value using number index
$key = $array[0];
$value = $array[0][];
I am using a number index as the size of the array when executed will be unknown