What would the following lines of code print to the console? (Assume
all #includes have been taken care of)
int main(){

int my_array[4][3] = {{38,72,16}, {42,15,32},
{24,47,63}, {5,73,68}};
cout << my_array[2][1] << endl;

return EXIT_SUCCESS;
}