Answer:
new
Step-by-step explanation:
The new keyword lets you create an object in memory (specifically the heap) and assigns the memory reference to whatever variable you were using for it (for example, if you did int* variable = new int(5);, a new integer would be created on the heap with the value 5, and a reference assigned to variable).