I would expect this to throw an error. ``` let arr = [1,2,3,4] arr.push 5 ``` --- I would also expect this to throw an error or do a clone ``` let arr = [1,2,3] let mutable arrrr = arr ```