public class Arraytest {
public static void main(String[] args) {
// TODO Auto-generated method stub
String[] pokemon = {"Pikachu", "Snorlax", "Mewtwo", "Charmander", "Eevee", "Ditto", "Squirtle", "Bulbasaur", "Jigglypuff", "Gengar"};
String[] superPower = {"Electric Zap", "Sleep Spell", "Tail Whip", "Fire blast", "Sonic Pounce", "Gelly Bomb", "Water Canon",
"Flower Blast", "Jiggly Song", "Ghost Attack"};
}
public static void description(String[] pokemon, String[] superPower){
for(int i = 0; i < pokemon.length; i++){
System.out.println("Pokemon: " + pokemon[i] + " | Power: " + superPower[i]);
}
}
}
--- Update ---
Can somebody help me on this code please?