Last newbie question for today. There is a hash:
h = {a: 1, b: 2, c: 3}
How to implement convert_to_arr(h) method with such output:
convert_to_arr(h)
# ["Key: 'a', Value: '1'",
# "Key: 'b', Value: '2'",
# "Key: 'c', Value: '3'"]
Thanks!