fn main() { let mut x = [1,2,3,4,5]; let y = &mut x[0]; let z = &x[1]; println!("y {}... z {} ", y, z); }