.count will give the number of values in an array regardless of type, meaning it can be used on strings, integers, booleans etc.

Let's check how many values are in the numbers array.

Nice. No matter the type of values in an array .count gives us the total number.

We want to count the values in the numbers array right?