can u fix my code
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo) /** * Write a description of class sdf here. * * @author (your name) * @version (a version number or a date) */ public class Music extends Actor { GreenfootSound music = new GreenfootSound("Virtualriots.mp3"); /** * Act - do whatever the sdf wants to do. This method is called whenever * the 'Act' or 'Run' button gets pressed in the environment. */ public void act() { if(!music.isPlaying()) { music.playLoop(); } else { music.stop(); } } }