Hello,
so i’m stuck in this project, i guess its because mainly i’m not a native English i’m finding it personally hard to understand what the task wants from me
exercise link:- https://www.codecademy.com/paths/introduction-to-android-with-java/tracks/programming-logic/modules/cumulative-project-3/projects/unquote-game-logic-pt-i
and i’m stuck on this task number 7
"Calculate a random number between 0 and max
Use the result from task 6 to calculate a random number between 0 and max
(the parameter you pass into generateRandomNumber()
) and save it to a local double
variable."
i still can’t get what does it want from me
this is my code so far:-
public class MainActivity {
// Add generateRandomNumber() here
public double generateRandomNumber(double max){
double random = Math.random();
return random;
}
// Add getGameOverMessage() here
}
can anyone explain how i do what the task wants from me ?
thanks!