Lower the array/list unpack. For example [$a, $b] = $arr; will be lowered to $a = $arr[0]; $b = $arr[1];
[$a, $b] = $arr;
$a = $arr[0]; $b = $arr[1];