Create a function that takes a hash and returns the keys and values as separate arrays. Return the keys sorted alphabetically, and their corresponding values in the same order.
keys_and_values({ "a" => 1, "b" => 2, "c" => 3 })
➞ [["a", "b", "c"], [1, 2, 3]]
keys_and_values({ "a" => "Apple", "b" => "Microsoft", "c" => "Google" })
➞ [["a", "b", "c"], ["Apple", "Microsoft", "Google"]]
keys_and_values({ "key1" => true, "key2" => false, "key3" => nil })
➞ [["key1", "key2", "key3"], [true, false, nil]]N/A