What JSON does this program print?

from Arrays
PHP 8.3.33 beginner 2 min

What JSON does this program print?

php
<?php
$steps = ['draft', 'review', 'publish'];
unset($steps[1]);
$steps[] = 'archive';
echo json_encode($steps), PHP_EOL;
Open in playground
Report an error