This compiles: ```reason let arr = [||]; arr->Js.Array2.push(1); arr->Js.Array2.push("2"); ``` To fix it `arr` requires explicit type annotation.