We talked about the * sign, which is also known as the splat operator, very briefly a few chapters ago.

In short, the * sign creates flexibility. If, for example, we don't know how many parameters we need to give a method, we can use the splat operator.

Sweet! The * sign lets us pass in as many values for a single parameter as we want.

The splat operator looks a lot like the multiplication operator.