Arrays Learning Mode

What will this script output?

<?php
$a = array('three','four','five');
$b = array('one','two');
echo count($a - $b);