PHP Basics Learning Mode

Fred works as a Web developer in Fastech Inc. He writes the following script:

<?php
    $s = 2;
    switch ($s) {
      case 1:
         print("Fred");
         break;
      case 2:
         print("Fast");
      case 3:
         print("Tech");
      default: print("default");
    }
?>

What will be displayed as output when Fred attempts to run this PHP script?