What does this program print?

from Arrays
PHP 8.3.33 beginner 2 min

What does this program print?

php
<?php
$labels = [];
$labels['8'] = 'string';
$labels[8] = 'integer';
$labels['08'] = 'leading';
echo count($labels), ':', $labels[8], ':', $labels['08'], PHP_EOL;
Open in playground
Report an error