Arrays are objects as well, which means they have a bunch of methods at their disposal as well.

Let's use a method to turn this array into a string, shall we?

Great job! The toString() method turns an array into a comma-separated string. The same applies to join() if we don't give it a string as a separator.

Don't we need a function to try that?