I'm having a really hard time creating this address book of mine, and im also new at this. the thing is I just want to know if it is possible to edit or modify the values inside the array,
String LNAME[] = new String[SIZE];
String FNAME[] = new String[SIZE];
String ADDRESS[] = new String[SIZE];
String CONTACT[] = new String[SIZE];
if for example i already assigned John Dor in the FNAME array how could i edit that value without going through the whole process again since i would just want to replace r with e so it would be john doe. given address is also there and addresses would contain large strings...