I've declared a variable as:
LinkedHashMap<Integer, String>[] function_labels;
function_labels = new LinkedHashMap<Integer, String>[2];
function_labels
you have to cast type to declare like this Generic Array Creation
function_labels = ( LinkedHashMap<Integer, String>[]) new LinkedHashMap<?,?>[2];