let arr_source_data	=	new Array('a' ,'b' ,'c' ,'e' ,'f');

let jsonObj         =   new Object();

let arr_result_data	=	new Array();

let json_str		=	"";

arr_source_data.forEach(
	function(item, index){
	
		console.log( item + "--" + index);
		jsonObj[ item ]    =   arr_source_data[index];
		
	}
);

arr_result_data.push( jsonObj );

let json_str   =   JSON.stringify(arr_result_data);

console.log( json_str );