/// <summary>
 /// Turns the board into an array, with a new Shape object at the top
 /// </summary>
 /// <returns></returns>
 public string[][] ToArray()
 {
     return(_activeShape.AddShapeToBoard(_board));
 }