Codice PHP:
$num=array (1,2,3,4,5);
$let=array('a','b','c','e','f');
for(
$i=0;$i<count($num);$i++)
{
  echo 
$num[$i]."-".$let[$i]."
"
;