1 VectorXi v = VectorXi::Random(4); 2 cout << "Here is the vector v:\n"; 3 for(auto x : v) cout << x << " "; 4 cout << "\n"; 5