Arrays Learning Mode

What is the output of the following code?

<?php
$source = '12,23,34';
$arr = str_split($source, 2);
echo count($arr);