You can use the subscript operator ([]) to get a specific element of the array. Then, you can use the subscript operator again to get a specific character from a string:
const result = names[0][1];
Note that both array indexes and string indexes are zero-based.