// "Collapse loop with stream 'toArray()'" "true-preview" import java.util.*; public class Main { public String[][] testToArray(List data) { return data.stream().filter(str -> !str.isEmpty()).map(str -> new String[]{str}).toArray(String[][]::new); } }