Unlock this challenge:
What will happen if you call the dump() function inside a PHP file without any arguments?
dump()
Nothing much, this call will be just ignored, i.e. it returns an empty result and the script execution continues
An error will be thrown: "At least one argument is required"
System information will be printed
It will print all known variables available at the line where it was called