Hi,
In the /concepts/rust-arrays page, there is a small error for
// Valid because both values are integers
let array_of_ints: [i32, 2] = [1, 2]
Should be
// Valid because both values are integers
let array_of_ints: [i32; 2] = [1, 2]
Best regards