PHP - Arrays
You have an associative array with user IDs as keys and scores as values:
$scores = [101 => 50, 102 => 75, 103 => 50, 104 => 90];You want to sort the array by scores in descending order but keep the user IDs as keys. Which function should you use?
