A fixed-size collection of values of any type, you cant add/remove items, you cant change type of items in a tuple, you can access items in a tuple using numerical positions or by naming them
var name = (first: "taylor", last: "swift")
name.0 or
name.first