Take a String parameter that is a name, with exactly two names in the String and exactly one space between the two names.
For example, "Marley, Bob"
I need help completing this method: it returns a String with the same name, but in the form "Bob Marley"
public static String convertName(String name)
{
}