String[][] matrix = new String[][]{
{"", "why ", "did ", "I ", "lose ", "reputation ", " ", ""},
{"", "points ", "for ", "this ", "question? ", "(dk)", "", ""}};
Arrays.stream(matrix, 0, 2)
.flatMap(s -> Arrays.stream(s, 1, 7))
.forEach(System.out::print);
}
why did I lose reputation points for this question? (dk)