Leko says to YSITD
``` void stubu(std::vector<int>& arr){ arr.push_back(1); } int main(){ std::vector<int> myArr; stubu(myArr); std::cout << myArr[0] << std::endl; // 1 return 0; }