function arguments order

/**
 * Let's create some join function
 * that will create name and surname
 * */
 
 function fullName(name, surname) {
     console.log(`My name is ${name} and surname ${surname}`);
 }
 
 fullName('John', 'Doe');
 //Result:
 // My name is John and surname Doe
 
 fullName('Doe', 'Jane');
 //Result:
 //My name is Doe and surname Jane