Start Process with multiple quoted string arguments?

I am trying to use the Start Process activity, but I have 2 arguments to pass in both of which are strings that contain spaces in them.
Cmd version would look like this: MyApp.exe “arg with space” “other arg with space”

In the arguments box I can’t figure out an escape sequence to duplicate this: “arg with space” “other arg with space”

Can anybody help?

I think I’ve got it. All those double and triple quotes were too much. This worked better:
Chr(34) + document.ToString + Chr(34) + " " + Chr(34) +wordsList + Chr(34)