Não consigo arrumar esse código ¬¬
import javax.swing.*;
public class ProgCinco {
public static void main (String args[]){
int sorteio;
for (int i=1; i<=3; i++) {
sorteio = (int)(Math.random()*6);
if (sorteio==0)
sorteio = sorteio + 1;
JOptionPane.showMessageDialog(null, "Resultado do sorteio \t" + sorteio + "Lançamento do Dado \t" + i, JOptionPane.INFORMATION_MESSAGE);
}
System.exit(0);}
}
Como corrijo ?