Write a function min_max(numbers) that takes a list of numbers and returns both the minimum and maximum values as a tuple.
Example usage:
low, high = min_max([3, 1, 4, 1, 5, 9])
print(low) # 1
print(high) # 9
Use tuple packing in your return statement. Unpack the result into two variables when calling.