<?php

function an_array()
  {
  return array('foo','bar');
  }
 
echo an_array()[0]; // oops!
?>