GreenfootImage image = new GreenfootImage("France.png");
getBackground().setFont(new Font("", Font.BOLD, 30));
getBackground().drawString("What country is this?", 23, 120);
String questionText = "";
ArrayList<Answer> answers = new ArrayList<Answer>();
answers.add(new Answer("Belgium", false));
answers.add(new Answer("France", true));
answers.add(new Answer("Switzerland", false));
answers.add(new Answer("Netherlands", false));
Collections.shuffle(answers);
Question question = new Question(questionText, answers);
String explanation = "The correct answer was France";
question.setExplanation(explanation);
questions.add(question);
I have dozens of questions like this (there is a picture of a country on the screen and the player has to chose the correct name of the country among the four possible answers) in my QuizWorld, but the images do not show up on my Geography quiz. Do you have any suggestions?

