Which two type names are printed?

from Data types
PHP 8.3.33 beginner 2 min

Which two type names are printed?

php
<?php
$reference = 42;
echo get_debug_type($reference), PHP_EOL;
$reference = '42';
echo get_debug_type($reference), PHP_EOL;
Open in playground
Report an error