PHP - Arrays
You have an associative array of products with prices:
$products = ['apple' => 3, 'banana' => 1, 'pear' => 2];How do you sort this array by price descending while keeping product names as keys?
