In a computer generated guessing game, the player should guess a number between 1 and 20. The player has 5 guesses. The player wins if the difference between two or more guesses with the actual number is smaller than or equal to 3 Ex: The number to be guessed is 9. The player's guesses are [2, 14, 10, 7, 3]. Since 10 is larger than 9 by 1, and 7 is smaller than 9 by 2, the player has won this set of the game. Write a function called Number Guess() that takes the number to be guessed and a player's guess array, calculates if the winning criteria is met, and returns logical 1 for if the player wins and logical O if the player did not. Ex: Given: gameNum = 13; and userGuess = [2, 5, 12, 17, 19]; Output: win = logical o Function ® Save C Reset I MATLAB Documentation 2 3 1 function win = NumberGuess (gameNum , userGuess) % Write a function that takes the elements of the row array of user's guesses % and calculates if the difference of 2 or more of the guesses is less than 3. win = 5 end 6 4 Code to call your function ® C Reset 1 gameNum = randi ([1, 20], 1) 2 userGuess = randi ([1 , 20], [1,5]) 3 win = NumberGuess (GameNum, UserGuess)