$colors = array('red', 'blue', 'green', 'yellow'); echo $colors[2]; // green $person = array('name' => 'Peter', 'age' => '23', 'location' => 'Scotland'); echo $person['name']; // Peter