public class TurtleGraphicFilesDemo { public static void main(String[] args) { World earth = new World(); Turtle donatello = new Turtle(150, 250, earth); donatello.setName("Jane"); donatello.moveTo(200, 200); donatello.penUp(); donatello.moveTo(300, 300); System.out.println(donatello); donatello.penDown(); // edit to match a path to your own jpg file Picture pic1 = new Picture("//?????/Desktop/YOUR_OWN_GRAPHIC.jpg"); pic1.show(); Picture pic2 = new Picture(FileChooser.pickAFile()).show()); String graphicFile = FileChooser.pickAFile(); Picture pic3 = new Picture(graphicFile); pic3.show(); String audioFile = FileChooser.pickAFile(); Sound sound = new Sound(audioFile); sound.play(); } }