Overriding ColdFusion's ArgumentCollection And An Extremely Weird Behavior!

<!--- Define the argument collection. --->
<cfset objArgs = {
	Naomi = "Sweet",
	Kit = "Tough",
	Christina = "Cocky"
	} />
 
<!---
	Invoke the test method using both the argument
	collection and an overriding value.
--->
<cfset OutputArguments(
	ArgumentCollection = objArgs,
	Naomi = "Insanely cute"
	) />

For Cut-and-Paste