I have two diffrent arrays one students name and one with there last names
String[] firstname = {"Joe", "bryan", "moe", "zoe"}; String[] Lastname = {"May", "Zoey", "Eden", "Pratt"}; I was wondering how i would go on getting an output like where it prints the students first name then right next it the students last name
e.g Joe May ,Bryan Zoey
I dont want to use print function to manually print each first and last name manually. I was wondering how i could print them all at once