There are many ways to return multiple values from a cfc. Typically we return a query object, a json string, an array, or a structure, but one of my favorite ways to return multiple bits of data is using a shorthand structure. It is much easier and intuitive to use on both the back and front end than using an array. Here is a simple example: Cfc:

<!--- There are two types of routing titles. The original design used an routing title that was used to populate a contract and this title was not the official title, but something more generic that was easily identifiable on a written contract. The other title is the official title that is coming from the workday database We will use the original routing title if the user was assigned a routing title that is found in the routing database, otherwise, we will use the official workday title. --->
<cffunction name="getTitleByEmail" access="remote" returntype="struct"  hint="Determines the approver title. This will be either the routing title that was used in previous contracts, or the official title found in workday. We need to return multiple values, so this returns a one dimension array instead of a string.">
	<cfargument name="email" type="string" required="yes" hint="Supply the email.">
                    
      <cfparam name="title" default="">
                    
      <!---Format the email--->
      <cfinvoke component="#WorkdayUsersObj#" method="formatUwEmail" returnvariable="uwEmail">
      	<cfinvokeargument name="email" value="#arguments.email#">
	</cfinvoke>
                    
      <!--- Query the Approval database to see if the title exists. --->
      <cfquery name="approvalTitle" datasource="Contracts">
      	SELECT TOP (1)     
		ApproverTitle
		FROM dbo.Approval
		WHERE  (Email = <cfqueryparam value="#uwEmail#" cfsqltype="cf_sql_varchar">) 
      </cfquery>
      <!---Set the ApproverTitle--->
      <cfset ApproverTitle = approvalTitle.ApproverTitle>
	<!---Get the workday job title. --->
	<cfinvoke component="#WorkdayUsersObj#" method="getEmployeeJobTitle" returnvariable="workdayTitle">
		<cfinvokeargument name="email" value="#email#">
	</cfinvoke>
                    
      <!---Build the shorthand struct --->
      <cfset titleStruct = {workdayTitle = #workdayTitle#, ApproverTitle = #ApproverTitle#}>
                    
   <cfreturn titleStruct>
                
</cffunction>

On the client side, simply use the following to output the value:

<cfset thisRoutingTitle = getTitleByEmail(thisApproverEmail).ApproverTitle>
<cfset thisWorkdayTitle = getTitleByEmail(thisApproverEmail).WorkdayTitle>