Google: how do I move a folder into another folder?

This is, hopefully, a simple question. How do I move a folder in Google Drive?

rclone move gsuite:/test/ gsuite:ToArchive/

will basically rename the test dir to ToArchive. What I want to do is move the test dir into the existing ToArchive dir, then I want to move other folders into ToArchive.

What you want is

rclone move gsuite:/test/ gsuite:ToArchive/test/

rclone always needs the full destination name at the end.