if you know the size ahead of time, you can even make the array const. ```rust const ONE: YourType = YourType { ... }; const MANY: [YourType; 512] = [ONE; 512]; let arr: [YourType; 512] = MANY; ```