What is the value of $xyz[2] ?

$xyz = array(
'a',
3 => 'b',
1 => 'c',
'd',
4 => 'e'
);
?>

Options:
A) a
B) d
C) e
D) Error
 
Answer : Error