p.getName(), firstDiceRoll, secondDiceRoll, what is required to correct this line
Answers
Answered by
2
getName is a function. Function may/may not require parameters/arguments.
My guess is firstDiceRoll and secondDiceRoll should be passed in the function.
Thus, correct line is: p.getName(firstDiceRoll, secondDiceRoll)
My guess is firstDiceRoll and secondDiceRoll should be passed in the function.
Thus, correct line is: p.getName(firstDiceRoll, secondDiceRoll)
shabnamtaj7860p9huyh:
thanks ur guess appeared true
Similar questions