PHP Basics Learning Mode

What will the output of the following code be?

<?php
$a = range(3,9);
foreach ($a as $b) {
   switch($b) {
      case 3:
      $b = 7;
      case 7:
      $b = 3;
      default:
      // do nothing
   }
}
echo implode('-',$a);
?>