PHP Basics Learning Mode

What is the output of this script?

<?php
$a = "apples" <=> "bananas";
$b = $a ?? $c ?? 10;
echo $b;