## 1.11 ```julia julia> @allocated a2 = rand(3); julia> a2 3-element Vector{Float64}: 0.52767349525505 0.2269015858381862 0.17957399950312425 ``` ## 1.12 ```julia julia> @allocated a2 = rand(3); julia> a2 ERROR: UndefVarError: `a2` not defined in `Main` Suggestion: check for spelling errors or missing imports. ```