Trying to sort an array. What's wrong here?

Okay, it’s late and I’m tired and it’s probably something REALLY simple but I’m trying to sort this array. Basically, I want to set the split times in order and I can’t see why the following code isn’t working, but it’s not…

  function SortSplitTimes()
    {
    	for (var i = 0; i < (AIDriverArray.length - 1); i++)
    	{
    		for (var j = (i + 1); j < AIDriverArray.length; j++)
    		{
    			if (AIDriverArray*.fSplitTime < AIDriverArray[j].fSplitTime)*
  •  	{*
    

_ fTemp = AIDriverArray*.fSplitTime;_
_ AIDriverArray.fSplitTime = AIDriverArray[j].fSplitTime;
AIDriverArray[j].fSplitTime = fTemp;
}
}*_

_ print(AIDriverArray*.fSplitTime);
}
}*

Help greatly appreciated!_

Okay, answered… shows how tired I was. I’d created the array of Driver cars but I hadn’t populated it. HAHAHAHAHA. WHat an egg… I was up for hours, too…