PHP - Operators
Given the array
$settings = ['theme' => null, 'language' => 'en'];, which of the following uses the null coalescing operator to correctly set $theme to 'default' if $settings['theme'] is null, and $language to 'en' if not set?