Say I have the array [func1, func2, func3].
I would like to print out as a string: "func1, func2, func3". However, it prints the entire contents of the function.
Would I have to do some regex to grab the name from the output or is there an easier method?
Cheers.