Aqui esta el codigo , no me compila :( ayuda porfavor
import java.io.*;
import java.util.*;
import java.util.Scanner;
import javax.swing.*;
class List {
static int num = 6;
static int i;
static String arreglo[ ] = new String[num];
static Scanner scan = new Scanner(System.in)
public static void ingrese() {
for(i = 0; i < arreglo.length ; i++)
{
arreglo[i] = scan.toString();
}
}
public static void main (String[] args)
{
ingrese();
}
}
Saludos-