How can I console log all rest paramaters without using a loop? (Including objects and no toString)

I got a mission that I must do which goes like this:

Write a function that does the following:
it will accept any number of arguments and do console.log on all of them.
Do not use loops.

Example and expected result:

result:

How am I supposed to do something like that without a loop?