And I can not create another array called combo[]
Sure you can. The array variable name would be "combo" and the individual combo boxes are "combo1", "combo2" etc.
The basic code is:
JCombobox[] comboBoxes = new JComboBox[4];
JComboBox combo1 = new JComboBox(...);
comboBoxes[0] = combo1;
JComboBox combo2 = new JComboBox(...);
comboBoxes[1] = combo2;
Then when you want to access the combo box you use:
String item = comboBoxes[i].getSelectedItem().toString();
How you actually create the combo boxes and add the to the frame is up to you, but then is no reason you can't add the combo box to an array.
because NetBeans
Don't use NetBeans to create the GUI. If you do you are spending time learning the IDE and the code won't be portable if you ever move to another IDE.
Instead, create the GUI manually and just use the IDE to compile and debug your code. This way you spend time learning Java, not the IDE.