Which class name does this program print?

from Error handling
PHP 8.3.33 beginner 2 min

Which class name does this program print?

php
<?php
try {
    strlen([]);
} catch (Throwable $failure) {
    echo $failure::class, PHP_EOL;
}
Open in playground
Report an error