You can do something like this
mixedArray := []interface{}{"astring", 10, &Object{'hello'}}
Most likely the values that you want to hold share some behavior, in that case what you should really do is create an interface and simply make the array content type that interface.