Create a function that takes a hash of student names and returns an array of student names in alphabetical order.
get_student_names({
"Student 1" => "Steve",
"Student 2" => "Becky",
"Student 3" => "John"
}) ➞ ["Becky", "John", "Steve"]return your result.