Creating two dimensional arrays in Rust

How do I create an empty mutable two dimensional array in Rust? This is what I have tried so far: let mut state[[u8 * 4] * 4]; This produces the error error: expected one of `:`, `;`, `=`, or `@`,