0 / 60 seg.

Which of the following shows the contents of vector v1 and v2 after running this code?

std::vector<int> v1{1,2,3},v2;
v2=v1;
v1.push_back(4);
v2.push_back(5);