You are to write a class called Matrix that implements a constructor, a method to returns an array with the dimensions of the stored matrix, a method that returns a reference to the internal array (Not an element-by-element copy of the array), a method that performs matrix multiplication, and one that performs scalar addition. For simplicity of this writeup, the code for the constructor is already provided for you.