The slices package has no functions for counting a specific value for now. I think it's good the definition of function is like this: ```go func Counts[S []E, E comparable](s S, e E) int ``` An example of the Counts function is like this: ```go names := []string{"Alex", "Gopher", "Bob", "Alice", "Gopher"} slices.Counts(names, "Gopher") // 2 slices.Counts(names, "Alex") // 1 slices.Counts(names, "James") // 0 ```