I wanted to add a largest function which will return the largest value in the array ```javascript const array = [290,452,575,235] const largestItem = largest(array) // 575 ```
I wanted to add a largest function which will return the largest value in the array