# Greatest element of a list

The `max` method returns the greatest element in a list. It works only if the array's elements have the same type (e.g.: strings, numbers).

```ruby
values.max
```
