What is wrong with this code?

Hi there!
Trying to create and populate a bi dimension array.
And doesnt work.
why?


var i=0;
var j=0;
for (i = 0; i < 101 ; i++)
{
	for (j = 0; j < 63; j++)
	{
			det*=[]; 
			det*[j]= new Object(); 
			det*[j].m_name="TEST"; 
			det*[j].m_surname="TEST"; 
			det*[j].m_job="TEST"; 
			det*[j].m_country="TEST"; 
			det*[j].m_add="TEST"; 
			det*[j].m_sex="TEST"; 
	}
	j=0;
}

trace(det[1][1].m_name);  //this output is "undefined" like all the next ones.
trace(det[1][1].m_surname); 
trace(det[1][1].m_job); 
trace(det[1][1].m_country); 
trace(det[1][1].m_add); 
trace(det[1][1].m_sex); 

When i runn the code, besides of NOT showing what is expect, it also tells me that the “script might make my computer run slow”.
What the hell is wrong?
Any ideas, sugestions?
Salut!
:angel: