# Destructuring Arrays You can destructure arrays, tuples, and slices by matching on their elements: ```rust,editable {{#include ../../third_party/rust-by-example/destructuring-arrays.rs}} ```