Create a method that takes an array of integers. Return the largest integer in the array.
findLargestNum([4, 5, 1, 3]) ➞ 5 findLargestNum([300, 200, 600, 150]) ➞ 600 findLargestNum([1000, 1001, 857, 1]) ➞ 1001