public function listen()
 {
     $session_id = Session::getId();
     // Get the first song in the queue
     $song = new Song(MusicQueue::dequeue());
     // Make sure there isn't an error in the song class (for some reason)
     if ($song->error()) {
         return "error";
     } else {
         // Listen to the song :)
         return view('listening', ['song' => $song]);
     }
 }