$arr1 = [a, b, c, d, e];
$arr2 = [1, 2, 3, 4, 5];

foreach($arr1 as $key=>$item)
{
     echo $item.' - '.$arr2[key];
}