// JavaScript Document

function randomNumbers() {
	return Math.floor(Math.random()*9); 
}

function randomLetters()
{
   return String.fromCharCode(65 + Math.floor(Math.random() * 25));
}


var strCheck
strCheck="";
for (i=0;i<=2;i++)
{
	strCheck=strCheck+randomNumbers();
	
}
for (i=0;i<=2;i++)
{
	strCheck=strCheck+randomLetters();
}
document.writeln(strCheck);

