I'm trying to create a multi-dimensional array in Java and I have it set up correctly however at the end it is saying '{' expected when there's already one there. This is the error line within the code
{
"Gerald Field", "U18", "Male", "Bourges", "14.01", "26.59","50.05"
};
Any suggestions on a way to fix this problem?
Edit:
Before this line is the rest of the array and this coding:
import javax.swing.JOptionPane;
public class CMS_Program
{
public CMS_Program()
{
String[][] names = new String[][]
{
{ Array here
All { are closed off too at the end.