https://coding-factory.tistory.com/253

Arrays.fill([arrayname], [value]);

For multi direction

https://cheerant.tistory.com/44

char[] hello = new char[3][5];

for(char[] a : hello)
	Arrays.fill(a, ‘A’);