This example used to work: ``` rust fn main() { let array = [true, false]; for i in 0..1 { println!("{}", array[i]); } } ``` Recently you'll get the error: `error: the trait``core::ops::Index<i32>``is not implemented for the type``[bool]``[E0277]`