initialize constant var SIZE, set it to 10 initialize list varX with SIZE as the amount of items initialize list varY with SIZE as the amount of items initialize list varZ with SIZE as the amount of items call func GetAndDisplayWelcomeInfo call func FunctionOne(pass varX, pass varY) call func FunctionTwo(pass varX, varY, varZ) set the first item of varZ equal to -99 call func PrintFunction(pass varX, varY, varZ) define func void GetAndDisplayWelcomeInfo() initialize 2D list name[2][20] display Please enter first name user input to name[0] display Please enter last name user input to name[1] display Welcome name[0] name[1], Hope all is well define func void FunctionOne(param int list, param const int list, param int list) set the second item of varX equal to 99 for loop (x = 0, x < SIZE, x steps by 1) varZ[x] = varX[x] + varY[x] (setting the values of varZ) define func PrintFunction(param const int list, param const int list) initialize var x display X Y Z for loop (x = 0, x < SIZE, x steps by 1) display value varX[x] display value varY[x] display value varZ[x]