Spot the bug in the smallest helper

from Generics
Swift 6.3.3 beginner 4 min 1 issue to find

Find why this generic function cannot call `min()`.

swift
func smallest<Value>(_ values: [Value]) -> Value? {
    values.min()
}
Open in playground
Report an error