I would like to randomly select one of the parts of an array list and insert it where it says "this is where i want to insert the random splash"
import greenfoot.*;
import java.awt.Color;
public class splash extends maintitle
{
public void act()
{
updateImage();
}
private void updateImage()
{
setImage(new GreenfootImage("" + /*this is where i want to insert the random splash*/, 20, Color.GREEN, null));
}
public static String[] getSplashes()
{
String[] splashes = {"Shooting Aliens!", "Vwoorp!", "qul!", "Worf Does It!", "Make It So!", "Engage!",
"It's A Trap!", "Trust Me, I'm The Doctor!"};
return splashes;
}
}


