I have 4 lines for representing people and 4 lines for representing names.
I try to randomize them so that every time I run my application my four people will have different names, but no one can have the same name at runtime.
Example:
String person_one; String person_two; String person_three; String person_four; String name_one = "Bob"; String name_two = "Jane"; String name_three = "Tim"; String name_four = "Sara";
Hope this makes sense.
EGHDK source share