Explanation should include the following:
The code below would cause the second constructor to be called to create an object of type Stacking:
class DoSomeStacking{
public static void main(String args[]){
Stacking myStack = new Stacking(3);
//Java selects the constructor that requires an integer to execute
//and creates the object with an array called items that can hold 3 elements
}