```julia julia> append!([1, 2, 3], "4") 4-element Vector{Int64}: 1 2 3 52 ``` is unintuitive (I would expect an error). I think the mechanism for this is that it treats the `"4"` as a collection of `Char`s, and converts them into integers. cc @jakobnissen @andrewrosemberg @raphaelsaavedra