SyntaxError: brak] po liście elementów [obiekt obiektu]

Dostałem ten błąd w firebugu:

     SyntaxError: missing ] after element list

    [object Object]

dla następującego kodu javascript:

for ( var i = 0; i < 4; i++ ) {
    setTimeout( function(){
        closeBtn( i,'.lt400' );
        // the error exactly happened in next line:
        setTimeout($('#uploaded-holder').hide(), i * 300 );
    }, i * 300 ); 
}

Nie wiem, jak tam może brakować ... tak przy okazji, w Chrome dostałem ten błąd:

Uncaught SyntaxError: Unexpected identifier

questionAnswers(3)

yourAnswerToTheQuestion