The LMS from which I'm launching my course passes the student name (AICC_Student_Name) with a comma between the names:"Firstname, Lastname"For printing certificates, I need to modify this to remove the comma. Yes, it's technically not my problem, but it's going to be solved no other way.I'm having difficulty with this:function doPrint() {VarAICC_Student_Name = VarAICC_Student_Name.replace(','," ");window.print}Am I even close? Is it even possible?