I have my code currently like this:
riddle_no += 1;
String riddleString = "riddle_" + riddle_no;
String riddle = getResources().getString(R.string.riddleString);
I want to replace 'riddleString' in getString() with the string variable. So far I have no idea how to do that.