Creation of sub arrays

by Ryan Brackett

CSS

body {
  background: #20262E;
  padding: 20px;
  font-family: Helvetica;
}

#banner-message {
  background: #fff;
  border-radius: 4px;
  padding: 20px;
  font-size: 25px;
  text-align: center;
  transition: all 0.2s;
  margin: 0 auto;
  width: 300px;
}

button {
  background: #0084ff;
  border: none;
  border-radius: 5px;
  padding: 8px 14px;
  font-size: 15px;
  color: #fff;
}

#banner-message.alt {
  background: #0084ff;
  color: #fff;
  margin-top: 40px;
  width: 200px;
}

#banner-message.alt button {
  background: #fff;
  color: #000;
}

JavaScript

var data_HospitalCensus = [

  [ // 	4/1/2020					
    //	Total Occupied Beds		Total Beds		COVID-19 PUI		COVID-19 Positives	
    461, 651, 43, 39
  ],
  [ // 	4/2/2020					
    445, 641, 49, 44
  ],
  [ // 	4/3/2020					
    449, 664, 51, 46
  ],
  [ // 	4/4/2020					
    444, 675, 53, 58
  ],
  [ // 	4/5/2020					
    461, 667, 47, 60
  ],
  [ // 	4/6/2020					
    443, 666, 60, 60
  ],
  [ // 	4/7/2020					
    481, 674, 67, 60
  ],
  [ // 	4/8/2020					
    470, 656, 68, 67
  ],
  [ // 	4/9/2020					
    464, 656, 80, 71
  ],
  [ // 	4/10/2020					
    496, 678, 88, 73
  ],
  [ // 	4/11/2020					
    474, 672, 51, 83
  ],
  [ // 	4/12/2020					
    457, 665, 62, 73
  ],
  [ // 	4/13/2020					
    461, 661, 81, 73
  ],
  [ // 	4/14/2020					
    480, 671, 36, 79
  ],
  [ // 	4/15/2020					
    503, 674, 44, 84
  ],
  [ // 	4/16/2020					
    548, 683, 53, 90
  ],
  [ // 	4/17/2020					
    510, 687, 30, 91
  ],
  [ // 	4/18/2020					
    479, 679, 29, 92
  ],
  [ // 	4/19/2020					
    519, 678, 49, 91
  ],
  [ // 	4/20/2020					
    525, 694, 42, 92
  ],
  [ // 	4/21/2020					
    567, 698, 61, 98
  ],
  [ // 	4/22/2020					
    514, 679, 63, 107
  ],
  [ // 	4/23/2020					
    571, 701, 47, 109
  ],
  [ // 	4/24/2020					
    525, 695, 42, 113
  ],
  [ // 	4/25/2020					
    509, 699, 49, 109
  ],
  [ // 	4/26/2020					
    519, 675, 82, 114
  ],
  [ // 	4/27/2020					
    510, 686, 90, 122
  ],
  [ // 	4/28/2020					
    536, 683, 105, 132
  ],
  [ // 	4/29/2020					
    571, 696, 126, 138
  ],
  [ // 	4/30/2020					
    558, 748, 152, 132
  ],
  [ // 	5/1/2020					
    576, 747, 112, 125
  ],
  [ // 	5/2/2020					
    553, 758, 112, 119
  ],
  [ // 	5/3/2020					
    547, 737, 112, 109
  ],
  [ // 	5/4/2020					
    544, 738, 112, 103
  ],
  [ // 	5/5/2020					
    599, 765, 68, 113
  ],
  [ // 	5/6/2020					
    613, 781, 86, 112
  ],
  [ // 	5/7/2020					
    607, 784, 93, 112
  ],
  [ // 	5/8/2020					
    620, 798, 98, 101
  ],
  [ // 	5/9/2020					
   ...