Create a function that takes a list of numbers and returns a new list, sorted in ascending order (smallest to biggest).
None or an empty list, return an empty list.sort_nums_ascending([1, 2, 10, 50, 5]) ➞ [1, 2, 5, 10, 50]
sort_nums_ascending([80, 29, 4, -95, -24, 85]) ➞ [-95, -24, 4, 29, 80, 85]
sort_nums_ascending([]) ➞ []
Test input can be positive or negative.