Help for this page
my $pick; ($choice_array[0] eq 'correct') ? ($pick = aaa) : ($pick = bbb);
my $pick = $choice_array[0] eq 'correct' ? aaa : bbb;