Destructuring
Destructuring is the process of breaking down items into their component parts, binding each to smaller variables
You can destructuring tuple into number of variables match the same tuple size and types
var (x, y) = (1, 2);
var (a, b, c) = (1, 2, 3);