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"
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | 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; } } |