In my MainActivity
i have a score variable,
int score = 0;
however i have another activity which is the DisplayScore
activity (which displays the score) txtFinalScore.setText("Score: " + score);
how can i use that same variable form my MainActivity
to my DisplayScore
activity so that i can display the score?