So the question meant that you should only eddit the function call. Before you do anything the function call looks as followed caesar() on the bottom of your code. But without the proper argements (text and shift) it’s not going to be able to do anything. If you pass them in there you should be able to see the code working in the preview window on the right.
So for now, if you can change the function definition back. And then in the function call just pass in the 2 parameters you should be able to get it. If not please show your adjusted code and we’ll help you further.
How will Python know you’ve switched the order? It matches the arguments (given when you call the function) to the parameters (the variables you set up in the definition) by the order.