function changeToUpperCase(founder) { return founder.toUpperCase(); } // calling the function const result = changeToUpperCase("Quincy Larson"); // printing the result to the console console.log(result); // Output: QUINCY LARSON