It can be convenient to specify a default value in case an element is missing in the list. You can use operator + for this:
<?php
$someArray = ['color' => 'orange'];
['color' => $color, 'size' => $size] = $someArray + ['color' => null, 'size' => null];
?>
This will avoid the warning `Undefined array key "size"` you would encounter otherwise.