Get a medal!
<script> switch(athleteFinalPosition = 'first place') { case "first place": console.log('You get the gold medal'); break; case "second place": console.log('You get the silver medal'); break; case "third place": console.log('You get the bronze medal'); break; default: console.log('No medal is awarded'); } </script>