What are the keys & values in an indexed array? Technology Community › Category: PHP › What are the keys & values in an indexed array? 0 Vote Up Vote Down VietMX Staff asked 4 years ago Consider: Array ( [0] => Hello [1] => world [2] => It's [3] => a [4] => beautiful [5] => day) The keys of an indexed array are 0, 1, 2 etc. (the index values) and values are “Hello”, “world”, “It’s”, “beautiful”, “day”.