jQuery: converte a matriz javascript em string

Estou tentando repetir uma lista de "valores" e convertê-la em uma string. Aqui está o código:

var blkstr = $.each(value, function(idx2,val2) {                    
     var str = idx2 + ":" + val2;
     alert(str);
     return str;
}).get().join(", ");    

função @alert () funciona muito bem e exibe o valor adequado. Mas, de alguma forma, a função .get () do jquery não obtém o tipo certo de objeto e falha. O que estou fazendo errado

questionAnswers(13)

yourAnswerToTheQuestion