PHP - Arrays
Given this array:
$data = [5 => 'bird', 3 => 'cat', 7 => 'dog'];You want to sort it by keys ascending but only keep keys greater than 4. Which code correctly does this?
