Create a function that takes an array of numbers. Return the largest number in the array.
find_largest_num([4, 5, 1, 3]) ➞ 5 find_largest_num([300, 200, 600, 150]) ➞ 600 find_largest_num([1000, 1001, 857, 1]) ➞ 1001