fun box() : String { val data = Array>(3) { Array(4, {false}) } for(d in data) { if(d.size != 4) return "fail" System.out?.println(d) } return "OK" }