To describe the array of 5 integers in Rust, we should use [i32; 5] syntax. Type and number of the elements are separated by semicolon and the order is important. W
[i32; 5]