Ruby Temukan Nilai Maks di Array

# using .max for arrays
arr = [1,3,4,5]
arr.max
Hungry Hornet