```julia using DynamicPolynomials @polyvar x[1:4] polys = [1 0 1 0; 0 1 0 1]*x variables.(polys) """ 2-element Array{Array{PolyVar{true},1},1}: [x₁, x₃] [x₁, x₂, x₃, x₄] """ ``` Why is the first polynomial a polynomial in two variables whereas the second polynomial has all four variables?