/* Create a function that takes a number (from 1 - 60) * and returns a corresponding string of hyphens. */ std::string Go(int num) { std::string n = ""; for (int a=0;a<num; a++){ n = n + '-'; } return n ; }