Now, with the explode() function, we can spit a string into an array. It takes 2 arguments: a delimiter and a string.

Sweet! The delimiter is the string that separates the values in the original string.

Psst: var_dump(), of course, is also a function.

Wouldn't that create an array with ", " and "rock, paper, scissors" as values?