PHP - Array Functions
Find the problem in this PHP code snippet:
$info = ['color' => 'red', 'size' => 'large'];
extract($info, EXTR_PREFIX_SAME, 'dup');
echo $color . ', ' . $dup_size;
