Redirect URL with Parameters from the form

I'm not a developer, so, I'm struggling a bit.

I want to populate a redirect on form submission using a variable URL that pulls from the form entries. What I'm looking for is a redirect URL that will look like this:
"URL"+Name=[name from form]&Email=[email from form]

Any tips would be greatly appreciated!

Dear @ebholmesy,
You can redirect like this:

fd.saved(function() {
    window.location.href = 'Site URL';
});

Adding values from the form is also possible, for example:

fd.saved(function() {
    window.location.href = 'https://plumsail.com/?name=' + fd.field('Name').value + '&email='  + fd.field('Email').value;
});

Thanks, Nikita. But it didn't quite work for me. Here's the code I input:
fd.saved(function() {
window.location.href = 'Untitled | Plumsail' + fd.field(Name).value + '&email=' + fd.field(EmailAddress).value;
});

But this was the result from the URL:
https://plumsail.com?name=+%20result.Name%20+%20"&email="%20+%20result.EmailAddress

Any thoughts on how to fix that issue to get the actual name and email, rather than the "result.name"?

Ok, so, that happened because I had tried something earlier and I had something in the "Redirect URL" field in the settings. I erased that, and now it's not working for me.