Arrays and Slices
An array is a collection of objects of the same type T, stored in contiguous memory. Arrays are created using brackets[], and their length, which is known at compile time, is part of their type signature[T; length]. Slices are similar to arrays, but their length is not known at compile time.
https://doc.rust-lang.org/rust-by-example/primitives/array.html