This is how to make arrays inside an array.
string[][] passwords = { new string[] { "books", "aisle", "self", "password", "font", "borrow" }, new string[] { "technology", "laptop", "siri", "smartphone", "application", "smartwatch" } };
This is how to make arrays inside an array.
string[][] passwords = { new string[] { "books", "aisle", "self", "password", "font", "borrow" }, new string[] { "technology", "laptop", "siri", "smartphone", "application", "smartwatch" } };
I love this!