Create a function that takes a vector containing only numbers and return the first element.
getFirstValue({1, 2, 3}) ➞ 1 getFirstValue({80, 5, 100}) ➞ 80 getFirstValue({-500, 0, 50}) ➞ -500
The first element in an array always has an index of 0.