Create a function that takes a list containing only numbers and return the first element.
get_first_value([1, 2, 3]) ➞ 1
get_first_value([80, 5, 100]) ➞ 80
get_first_value([-500, 0, 50]) ➞ -500
The first element in a list always has an index of 0.