File size: 53,433 Bytes
c0f589d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 |
[
{
"question": "Take the last letters of each words in \"Clinton Yanira Barbara Betsy\" and concatenate them.",
"answer": "naay"
},
{
"question": "Take the last letters of each words in \"Violeta Clay Janelle Mac\" and concatenate them.",
"answer": "ayec"
},
{
"question": "Take the last letters of each words in \"Gavin Neha Asha Baltazar\" and concatenate them.",
"answer": "naar"
},
{
"question": "Take the last letters of each words in \"Bernard Lidia Sebastian Judy\" and concatenate them.",
"answer": "dany"
},
{
"question": "Take the last letters of each words in \"Pretty Jada Sarita Allen\" and concatenate them.",
"answer": "yaan"
},
{
"question": "Take the last letters of each words in \"Chava Rosalia Kurt Linda\" and concatenate them.",
"answer": "aata"
},
{
"question": "Take the last letters of each words in \"Renata Mariela Mona Kristin\" and concatenate them.",
"answer": "aaan"
},
{
"question": "Take the last letters of each words in \"Forrest Juanito Allan Candice\" and concatenate them.",
"answer": "tone"
},
{
"question": "Take the last letters of each words in \"Michele Karan Abraham Ellen\" and concatenate them.",
"answer": "enmn"
},
{
"question": "Take the last letters of each words in \"Lupita Cyndi Kay Derrick\" and concatenate them.",
"answer": "aiyk"
},
{
"question": "Take the last letters of each words in \"Wesley Marcelo Rodolfo Erick\" and concatenate them.",
"answer": "yook"
},
{
"question": "Take the last letters of each words in \"Bj Rigo Nigel Christian\" and concatenate them.",
"answer": "joln"
},
{
"question": "Take the last letters of each words in \"Tomas Nic Zoila Calvin\" and concatenate them.",
"answer": "scan"
},
{
"question": "Take the last letters of each words in \"Ubaldo Katrina Francis Lynn\" and concatenate them.",
"answer": "oasn"
},
{
"question": "Take the last letters of each words in \"Chandler Martina Leonardo Gregg\" and concatenate them.",
"answer": "raog"
},
{
"question": "Take the last letters of each words in \"Julieta Zachary Jared Tyson\" and concatenate them.",
"answer": "aydn"
},
{
"question": "Take the last letters of each words in \"Fred Nolan Johnathan Carson\" and concatenate them.",
"answer": "dnnn"
},
{
"question": "Take the last letters of each words in \"Franklin Rochelle Brent Sarai\" and concatenate them.",
"answer": "neti"
},
{
"question": "Take the last letters of each words in \"Nico Lorenzo Johanna Teresita\" and concatenate them.",
"answer": "ooaa"
},
{
"question": "Take the last letters of each words in \"Dallas Uriel Brendan Julian\" and concatenate them.",
"answer": "slnn"
},
{
"question": "Take the last letters of each words in \"Antonio Ronald Ken Rachael\" and concatenate them.",
"answer": "odnl"
},
{
"question": "Take the last letters of each words in \"Elle Alex Irma Stephan\" and concatenate them.",
"answer": "exan"
},
{
"question": "Take the last letters of each words in \"Vijay Sherrie Doug Suzy\" and concatenate them.",
"answer": "yegy"
},
{
"question": "Take the last letters of each words in \"Daphne Lola Joanna Sheena\" and concatenate them.",
"answer": "eaaa"
},
{
"question": "Take the last letters of each words in \"Angelina Layla Jenny Zane\" and concatenate them.",
"answer": "aaye"
},
{
"question": "Take the last letters of each words in \"Sunny Trisha Paul Guy\" and concatenate them.",
"answer": "yaly"
},
{
"question": "Take the last letters of each words in \"Belkis Wendell Lissette Patricia\" and concatenate them.",
"answer": "slea"
},
{
"question": "Take the last letters of each words in \"Deandre Moe Jack Vanessa\" and concatenate them.",
"answer": "eeka"
},
{
"question": "Take the last letters of each words in \"Allyson Mara Jo Toni\" and concatenate them.",
"answer": "naoi"
},
{
"question": "Take the last letters of each words in \"Paulo Tatyana Bernice Ra\u00fal\" and concatenate them.",
"answer": "oael"
},
{
"question": "Take the last letters of each words in \"Jordan Yoni Lawrence Aura\" and concatenate them.",
"answer": "niea"
},
{
"question": "Take the last letters of each words in \"Talia Nicki Tia Divya\" and concatenate them.",
"answer": "aiaa"
},
{
"question": "Take the last letters of each words in \"Bobbi Tamika Zac Lala\" and concatenate them.",
"answer": "iaca"
},
{
"question": "Take the last letters of each words in \"Billy Kassandra Joy Abe\" and concatenate them.",
"answer": "yaye"
},
{
"question": "Take the last letters of each words in \"Damian Crystal Nisha Hernan\" and concatenate them.",
"answer": "nlan"
},
{
"question": "Take the last letters of each words in \"Jorge Natalia Bryant Kiran\" and concatenate them.",
"answer": "eatn"
},
{
"question": "Take the last letters of each words in \"Maria Elena Dewayne Mj Elliott\" and concatenate them.",
"answer": "aejt"
},
{
"question": "Take the last letters of each words in \"Maura Selvin Tabitha Gino\" and concatenate them.",
"answer": "anao"
},
{
"question": "Take the last letters of each words in \"Lynda Danilo Jonny Judith\" and concatenate them.",
"answer": "aoyh"
},
{
"question": "Take the last letters of each words in \"Denis Gigi Heather Ginger\" and concatenate them.",
"answer": "sirr"
},
{
"question": "Take the last letters of each words in \"Caroline Demetrius Fidel Solomon\" and concatenate them.",
"answer": "esln"
},
{
"question": "Take the last letters of each words in \"Maureen Fabian Claudette Peyton\" and concatenate them.",
"answer": "nnen"
},
{
"question": "Take the last letters of each words in \"Rogelio Freddy Ivan Madeleine\" and concatenate them.",
"answer": "oyne"
},
{
"question": "Take the last letters of each words in \"Hilario Magdalena Morris Patricio\" and concatenate them.",
"answer": "oaso"
},
{
"question": "Take the last letters of each words in \"Fermin Berenice Marianne Eleanor\" and concatenate them.",
"answer": "neer"
},
{
"question": "Take the last letters of each words in \"Glenda Beverly Agustin Igor\" and concatenate them.",
"answer": "aynr"
},
{
"question": "Take the last letters of each words in \"Shannon Millie Rosemary Priyanka\" and concatenate them.",
"answer": "neya"
},
{
"question": "Take the last letters of each words in \"Conrad Marcella Annette Esteban\" and concatenate them.",
"answer": "daen"
},
{
"question": "Take the last letters of each words in \"Sherri Genesis Jeffrey Samir\" and concatenate them.",
"answer": "isyr"
},
{
"question": "Take the last letters of each words in \"Anand Estefania Stanley Lizette\" and concatenate them.",
"answer": "daye"
},
{
"question": "Take the last letters of each words in \"Liz Andrea Suresh Vera\" and concatenate them.",
"answer": "zaha"
},
{
"question": "Take the last letters of each words in \"Carolyn Sasha Mercy Keri\" and concatenate them.",
"answer": "nayi"
},
{
"question": "Take the last letters of each words in \"Neil Dani Eddie Marcelino\" and concatenate them.",
"answer": "lieo"
},
{
"question": "Take the last letters of each words in \"Nery Cindy Jess Chris\" and concatenate them.",
"answer": "yyss"
},
{
"question": "Take the last letters of each words in \"Cheri Rico Teo Jesus\" and concatenate them.",
"answer": "ioos"
},
{
"question": "Take the last letters of each words in \"Candy Megan Ed Nathan\" and concatenate them.",
"answer": "yndn"
},
{
"question": "Take the last letters of each words in \"Luisa Tatiana Drake Hillary\" and concatenate them.",
"answer": "aaey"
},
{
"question": "Take the last letters of each words in \"Mickey Dom Lilly Eloy\" and concatenate them.",
"answer": "ymyy"
},
{
"question": "Take the last letters of each words in \"Margaret Rosi Willy Charlene\" and concatenate them.",
"answer": "tiye"
},
{
"question": "Take the last letters of each words in \"Philip Antony Iris Alicia\" and concatenate them.",
"answer": "pysa"
},
{
"question": "Take the last letters of each words in \"Lucio V\u00edctor Lester Allie\" and concatenate them.",
"answer": "orre"
},
{
"question": "Take the last letters of each words in \"Julio Sidney Aiden Shay\" and concatenate them.",
"answer": "oyny"
},
{
"question": "Take the last letters of each words in \"Ari Jasmine Elliot Kendrick\" and concatenate them.",
"answer": "ietk"
},
{
"question": "Take the last letters of each words in \"Angel Sheryl Dulce Kenny\" and concatenate them.",
"answer": "lley"
},
{
"question": "Take the last letters of each words in \"Breanna Trey Omar Patrice\" and concatenate them.",
"answer": "ayre"
},
{
"question": "Take the last letters of each words in \"Gabe Dora Aileen Modesto\" and concatenate them.",
"answer": "eano"
},
{
"question": "Take the last letters of each words in \"Miriam Brandy Bertha Renato\" and concatenate them.",
"answer": "myao"
},
{
"question": "Take the last letters of each words in \"Jose Luis Kiara Arun Josefina\" and concatenate them.",
"answer": "sana"
},
{
"question": "Take the last letters of each words in \"Gerson Roxanne Deborah Nathaniel\" and concatenate them.",
"answer": "nehl"
},
{
"question": "Take the last letters of each words in \"Juana Chip Lila Jayme\" and concatenate them.",
"answer": "apae"
},
{
"question": "Take the last letters of each words in \"Victoria Aurora Amalia Princess\" and concatenate them.",
"answer": "aaas"
},
{
"question": "Take the last letters of each words in \"Jeremiah Kelley Josue Veronica\" and concatenate them.",
"answer": "hyea"
},
{
"question": "Take the last letters of each words in \"Marc Doris Ernie Gary\" and concatenate them.",
"answer": "csey"
},
{
"question": "Take the last letters of each words in \"Conor Randall Oleg Stephanie\" and concatenate them.",
"answer": "rlge"
},
{
"question": "Take the last letters of each words in \"Bruce Dena Kyla Robbie\" and concatenate them.",
"answer": "eaae"
},
{
"question": "Take the last letters of each words in \"Gee Joseluis Cory Stefanie\" and concatenate them.",
"answer": "esye"
},
{
"question": "Take the last letters of each words in \"Juan Jose Dalia Destiny Amelia\" and concatenate them.",
"answer": "eaya"
},
{
"question": "Take the last letters of each words in \"Felipe Heidi Nino Bradley\" and concatenate them.",
"answer": "eioy"
},
{
"question": "Take the last letters of each words in \"Dany Hilda Butch Mahesh\" and concatenate them.",
"answer": "yahh"
},
{
"question": "Take the last letters of each words in \"Zach Trenton Cary Beth\" and concatenate them.",
"answer": "hnyh"
},
{
"question": "Take the last letters of each words in \"Cinthia Lloyd Jacqueline Jc\" and concatenate them.",
"answer": "adec"
},
{
"question": "Take the last letters of each words in \"Walter Mikayla Larry Ryan\" and concatenate them.",
"answer": "rayn"
},
{
"question": "Take the last letters of each words in \"Trish Vero Victor Clemente\" and concatenate them.",
"answer": "hore"
},
{
"question": "Take the last letters of each words in \"Rocio Sandy Anahi Latasha\" and concatenate them.",
"answer": "oyia"
},
{
"question": "Take the last letters of each words in \"Juan Manuel Benjamin Rory Rafael\" and concatenate them.",
"answer": "lnyl"
},
{
"question": "Take the last letters of each words in \"Braulio Staci Jocelyn Brittany\" and concatenate them.",
"answer": "oiny"
},
{
"question": "Take the last letters of each words in \"Carlitos Damaris Nikhil Jennie\" and concatenate them.",
"answer": "ssle"
},
{
"question": "Take the last letters of each words in \"Chantal Ines Valeria Francesca\" and concatenate them.",
"answer": "lsaa"
},
{
"question": "Take the last letters of each words in \"Clayton Edison Debbie Elvira\" and concatenate them.",
"answer": "nnea"
},
{
"question": "Take the last letters of each words in \"Morgan Perla Joao Marta\" and concatenate them.",
"answer": "naoa"
},
{
"question": "Take the last letters of each words in \"Janet Ant Vickie Elias\" and concatenate them.",
"answer": "ttes"
},
{
"question": "Take the last letters of each words in \"Kelvin Brennan Carina Paty\" and concatenate them.",
"answer": "nnay"
},
{
"question": "Take the last letters of each words in \"Julia Kirsten Pam Adan\" and concatenate them.",
"answer": "anmn"
},
{
"question": "Take the last letters of each words in \"Lacey Nora Debra Ashleigh\" and concatenate them.",
"answer": "yaah"
},
{
"question": "Take the last letters of each words in \"Carlos Jackie Callie Caitlin\" and concatenate them.",
"answer": "seen"
},
{
"question": "Take the last letters of each words in \"Alec Arianna Corina Juancarlos\" and concatenate them.",
"answer": "caas"
},
{
"question": "Take the last letters of each words in \"Letty Aimee Elvia Ted\" and concatenate them.",
"answer": "yead"
},
{
"question": "Take the last letters of each words in \"Seth Dario Anne Jodie\" and concatenate them.",
"answer": "hoee"
},
{
"question": "Take the last letters of each words in \"Maryam Susy Trinity Pearl\" and concatenate them.",
"answer": "myyl"
},
{
"question": "Take the last letters of each words in \"Marshall Herman Faye Grant\" and concatenate them.",
"answer": "lnet"
},
{
"question": "Take the last letters of each words in \"Kelly Cheryl Nancy Jojo\" and concatenate them.",
"answer": "ylyo"
},
{
"question": "Take the last letters of each words in \"Gisela Gerald Mackenzie Ashley\" and concatenate them.",
"answer": "adey"
},
{
"question": "Take the last letters of each words in \"Rachel Alisa Fanny Jeffery\" and concatenate them.",
"answer": "layy"
},
{
"question": "Take the last letters of each words in \"Roberta Mauro Clint Marcela\" and concatenate them.",
"answer": "aota"
},
{
"question": "Take the last letters of each words in \"Angelique Marissa Phyllis Bonnie\" and concatenate them.",
"answer": "ease"
},
{
"question": "Take the last letters of each words in \"Logan Ely Abbie Colleen\" and concatenate them.",
"answer": "nyen"
},
{
"question": "Take the last letters of each words in \"Sunil Tiana Darla Darnell\" and concatenate them.",
"answer": "laal"
},
{
"question": "Take the last letters of each words in \"Joyce Leroy Alyssa Maggie\" and concatenate them.",
"answer": "eyae"
},
{
"question": "Take the last letters of each words in \"Orlando Colby Julius Ofelia\" and concatenate them.",
"answer": "oysa"
},
{
"question": "Take the last letters of each words in \"Irvin Brittney Vince Lucas\" and concatenate them.",
"answer": "nyes"
},
{
"question": "Take the last letters of each words in \"Margarita Anabel Shaun Celina\" and concatenate them.",
"answer": "alna"
},
{
"question": "Take the last letters of each words in \"Malcolm Hussein Franco Hugo\" and concatenate them.",
"answer": "mnoo"
},
{
"question": "Take the last letters of each words in \"Rosendo Shayla Erica Georgia\" and concatenate them.",
"answer": "oaaa"
},
{
"question": "Take the last letters of each words in \"Manolo Bobbie Ash Jaqueline\" and concatenate them.",
"answer": "oehe"
},
{
"question": "Take the last letters of each words in \"Brandon Ivonne Jefferson Isabella\" and concatenate them.",
"answer": "nena"
},
{
"question": "Take the last letters of each words in \"Jason Betty Elisa Jay\" and concatenate them.",
"answer": "nyay"
},
{
"question": "Take the last letters of each words in \"Cristina Saad Bridget Katie\" and concatenate them.",
"answer": "adte"
},
{
"question": "Take the last letters of each words in \"Myriam Jos\u00e9 Cecy Faisal\" and concatenate them.",
"answer": "m\u00e9yl"
},
{
"question": "Take the last letters of each words in \"Emiliano Jasmin Wade Vilma\" and concatenate them.",
"answer": "onea"
},
{
"question": "Take the last letters of each words in \"Salvador Sol Tyler Kareem\" and concatenate them.",
"answer": "rlrm"
},
{
"question": "Take the last letters of each words in \"Lizzy Juany Aisha Brenda\" and concatenate them.",
"answer": "yyaa"
},
{
"question": "Take the last letters of each words in \"Wilfredo Abby Karthik Perry\" and concatenate them.",
"answer": "oyky"
},
{
"question": "Take the last letters of each words in \"Wilmer Valerie Melissa Eloisa\" and concatenate them.",
"answer": "reaa"
},
{
"question": "Take the last letters of each words in \"Wilson Abbey Harold Nelly\" and concatenate them.",
"answer": "nydy"
},
{
"question": "Take the last letters of each words in \"Maricruz Alfredo Barry Deepak\" and concatenate them.",
"answer": "zoyk"
},
{
"question": "Take the last letters of each words in \"Bernie Melina Kelsey Rusty\" and concatenate them.",
"answer": "eayy"
},
{
"question": "Take the last letters of each words in \"Arturo Dominick Christa Myles\" and concatenate them.",
"answer": "okas"
},
{
"question": "Take the last letters of each words in \"Mel Josh Alejandra Harley\" and concatenate them.",
"answer": "lhay"
},
{
"question": "Take the last letters of each words in \"Timmy Katherine Gabriel Nate\" and concatenate them.",
"answer": "yele"
},
{
"question": "Take the last letters of each words in \"Kristy Brandi Lizeth Petra\" and concatenate them.",
"answer": "yiha"
},
{
"question": "Take the last letters of each words in \"Gabino Kayla Laurie Familia\" and concatenate them.",
"answer": "oaea"
},
{
"question": "Take the last letters of each words in \"Caleb Chase Eleazar Chanel\" and concatenate them.",
"answer": "berl"
},
{
"question": "Take the last letters of each words in \"Christy Rey Michelle Dolly\" and concatenate them.",
"answer": "yyey"
},
{
"question": "Take the last letters of each words in \"Hailey Avi Bree Samira\" and concatenate them.",
"answer": "yiea"
},
{
"question": "Take the last letters of each words in \"Adalberto Jamal Carter Robyn\" and concatenate them.",
"answer": "olrn"
},
{
"question": "Take the last letters of each words in \"Regina Joel Justice Eli\" and concatenate them.",
"answer": "alei"
},
{
"question": "Take the last letters of each words in \"Frank Trevor Al Gabriella\" and concatenate them.",
"answer": "krla"
},
{
"question": "Take the last letters of each words in \"Guille Lisa Harvey Gina\" and concatenate them.",
"answer": "eaya"
},
{
"question": "Take the last letters of each words in \"Angelica Tariq Ursula Nena\" and concatenate them.",
"answer": "aqaa"
},
{
"question": "Take the last letters of each words in \"Brooklyn Dawn Tay Gene\" and concatenate them.",
"answer": "nnye"
},
{
"question": "Take the last letters of each words in \"Garry Arielle Elba Rodney\" and concatenate them.",
"answer": "yeay"
},
{
"question": "Take the last letters of each words in \"King Edith Traci Flor\" and concatenate them.",
"answer": "ghir"
},
{
"question": "Take the last letters of each words in \"Irving Hans Moses Nicole\" and concatenate them.",
"answer": "gsse"
},
{
"question": "Take the last letters of each words in \"Gayle Doreen Chelsey Helena\" and concatenate them.",
"answer": "enya"
},
{
"question": "Take the last letters of each words in \"Raymundo Jonathon Lexi Rony\" and concatenate them.",
"answer": "oniy"
},
{
"question": "Take the last letters of each words in \"Clarissa Shauna Alexis Branden\" and concatenate them.",
"answer": "aasn"
},
{
"question": "Take the last letters of each words in \"Lorraine Corinne Kate Floyd\" and concatenate them.",
"answer": "eeed"
},
{
"question": "Take the last letters of each words in \"Marcia Belen Reyna Britney\" and concatenate them.",
"answer": "anay"
},
{
"question": "Take the last letters of each words in \"Teri Lina Mery Melanie\" and concatenate them.",
"answer": "iaye"
},
{
"question": "Take the last letters of each words in \"Geovanny Tom Katelyn Jennifer\" and concatenate them.",
"answer": "ymnr"
},
{
"question": "Take the last letters of each words in \"Itzel Anderson Kenia Edy\" and concatenate them.",
"answer": "lnay"
},
{
"question": "Take the last letters of each words in \"Barb Gage Kristian Asia\" and concatenate them.",
"answer": "bena"
},
{
"question": "Take the last letters of each words in \"Mia Art Samantha Lety\" and concatenate them.",
"answer": "atay"
},
{
"question": "Take the last letters of each words in \"Les Jun Noe Juliana\" and concatenate them.",
"answer": "snea"
},
{
"question": "Take the last letters of each words in \"Chance Valentin Micah Clara\" and concatenate them.",
"answer": "enha"
},
{
"question": "Take the last letters of each words in \"Cristal Roxana Rajesh Danny\" and concatenate them.",
"answer": "lahy"
},
{
"question": "Take the last letters of each words in \"Aj Jd Maddie Francisca\" and concatenate them.",
"answer": "jdea"
},
{
"question": "Take the last letters of each words in \"Max Mikey Cynthia Holly\" and concatenate them.",
"answer": "xyay"
},
{
"question": "Take the last letters of each words in \"Georgina Joshua Lindsey C\u00e9sar\" and concatenate them.",
"answer": "aayr"
},
{
"question": "Take the last letters of each words in \"Jessy Libby Danielle Red\" and concatenate them.",
"answer": "yyed"
},
{
"question": "Take the last letters of each words in \"Leticia Jacinto Natasha Raphael\" and concatenate them.",
"answer": "aoal"
},
{
"question": "Take the last letters of each words in \"Manuel Aurelio India Rosalba\" and concatenate them.",
"answer": "loaa"
},
{
"question": "Take the last letters of each words in \"June Robin Josie Bo\" and concatenate them.",
"answer": "eneo"
},
{
"question": "Take the last letters of each words in \"Roni Nikita Hannah Kiana\" and concatenate them.",
"answer": "iaha"
},
{
"question": "Take the last letters of each words in \"Flora Warren Gwendolyn Alissa\" and concatenate them.",
"answer": "anna"
},
{
"question": "Take the last letters of each words in \"Clark Jenn Diane Blair\" and concatenate them.",
"answer": "kner"
},
{
"question": "Take the last letters of each words in \"Abdi Clyde Ana Maria Pepe\" and concatenate them.",
"answer": "ieae"
},
{
"question": "Take the last letters of each words in \"Dana German Alvin Braden\" and concatenate them.",
"answer": "annn"
},
{
"question": "Take the last letters of each words in \"Emely Chelsea Vladimir Tyrone\" and concatenate them.",
"answer": "yare"
},
{
"question": "Take the last letters of each words in \"Sabrina Pete Mary La\" and concatenate them.",
"answer": "aeya"
},
{
"question": "Take the last letters of each words in \"Reginald Franky Kira Gordon\" and concatenate them.",
"answer": "dyan"
},
{
"question": "Take the last letters of each words in \"Salvatore Gustavo Jill Celeste\" and concatenate them.",
"answer": "eole"
},
{
"question": "Take the last letters of each words in \"Sherry Ben Allison Anthony\" and concatenate them.",
"answer": "ynny"
},
{
"question": "Take the last letters of each words in \"Prince Rene Vishal Patrick\" and concatenate them.",
"answer": "eelk"
},
{
"question": "Take the last letters of each words in \"Lazaro Ana Charlotte Precious\" and concatenate them.",
"answer": "oaes"
},
{
"question": "Take the last letters of each words in \"Laila Audrey Glenn Rhonda\" and concatenate them.",
"answer": "ayna"
},
{
"question": "Take the last letters of each words in \"Leanne Lulu Lopez Jp\" and concatenate them.",
"answer": "euzp"
},
{
"question": "Take the last letters of each words in \"Geo Kody Isaias Giovanni\" and concatenate them.",
"answer": "oysi"
},
{
"question": "Take the last letters of each words in \"Otto Marjorie Leonor Esther\" and concatenate them.",
"answer": "oerr"
},
{
"question": "Take the last letters of each words in \"Debora Jayson Donna Sai\" and concatenate them.",
"answer": "anai"
},
{
"question": "Take the last letters of each words in \"Jim Dwayne Ricky Artemio\" and concatenate them.",
"answer": "meyo"
},
{
"question": "Take the last letters of each words in \"Fausto Tito Jade Terrance\" and concatenate them.",
"answer": "ooee"
},
{
"question": "Take the last letters of each words in \"Lionel Fiona Bobby Janeth\" and concatenate them.",
"answer": "layh"
},
{
"question": "Take the last letters of each words in \"Chloe Flaco Theodore Nathalie\" and concatenate them.",
"answer": "eoee"
},
{
"question": "Take the last letters of each words in \"Leon Payton Stefan Javi\" and concatenate them.",
"answer": "nnni"
},
{
"question": "Take the last letters of each words in \"Micaela Kevin Diamond Ty\" and concatenate them.",
"answer": "andy"
},
{
"question": "Take the last letters of each words in \"Ralph Jeanne Kyle Alejandro\" and concatenate them.",
"answer": "heeo"
},
{
"question": "Take the last letters of each words in \"Donovan Lonnie Jairo Mariah\" and concatenate them.",
"answer": "neoh"
},
{
"question": "Take the last letters of each words in \"Selena Keisha Gladys Cedric\" and concatenate them.",
"answer": "aasc"
},
{
"question": "Take the last letters of each words in \"Martin Sage Tanisha Rick\" and concatenate them.",
"answer": "neak"
},
{
"question": "Take the last letters of each words in \"Deanna Terri Gabriela Jonah\" and concatenate them.",
"answer": "aiah"
},
{
"question": "Take the last letters of each words in \"Missy Erin Lorna Lenny\" and concatenate them.",
"answer": "ynay"
},
{
"question": "Take the last letters of each words in \"Daryl Owen Myra Aaron\" and concatenate them.",
"answer": "lnan"
},
{
"question": "Take the last letters of each words in \"Eugenia Kellie Quentin Mike\" and concatenate them.",
"answer": "aene"
},
{
"question": "Take the last letters of each words in \"Jeff Jen Giselle Noel\" and concatenate them.",
"answer": "fnel"
},
{
"question": "Take the last letters of each words in \"Virginia Juanita Zak Wayne\" and concatenate them.",
"answer": "aake"
},
{
"question": "Take the last letters of each words in \"Nubia Sarah Jalen Kris\" and concatenate them.",
"answer": "ahns"
},
{
"question": "Take the last letters of each words in \"Vicente Dayana Kasey Lin\" and concatenate them.",
"answer": "eayn"
},
{
"question": "Take the last letters of each words in \"Peggy Trent Darrell Pamela\" and concatenate them.",
"answer": "ytla"
},
{
"question": "Take the last letters of each words in \"Earl Rudy Harrison Nadine\" and concatenate them.",
"answer": "lyne"
},
{
"question": "Take the last letters of each words in \"Kristie Johnnie Marisa Derick\" and concatenate them.",
"answer": "eeak"
},
{
"question": "Take the last letters of each words in \"Elva Kari Shirley Gilberto\" and concatenate them.",
"answer": "aiyo"
},
{
"question": "Take the last letters of each words in \"Guadalupe Ebony Wil Luke\" and concatenate them.",
"answer": "eyle"
},
{
"question": "Take the last letters of each words in \"Len Marquis Kylie Sandra\" and concatenate them.",
"answer": "nsea"
},
{
"question": "Take the last letters of each words in \"Lamont Frederick Lance Esperanza\" and concatenate them.",
"answer": "tkea"
},
{
"question": "Take the last letters of each words in \"Mya Fernando Bubba Tommy\" and concatenate them.",
"answer": "aoay"
},
{
"question": "Take the last letters of each words in \"Donny Lucero Christopher Gregory\" and concatenate them.",
"answer": "yory"
},
{
"question": "Take the last letters of each words in \"Annie To\u00f1o Sharon Delores\" and concatenate them.",
"answer": "eons"
},
{
"question": "Take the last letters of each words in \"Gabby Reese Leah Celia\" and concatenate them.",
"answer": "yeha"
},
{
"question": "Take the last letters of each words in \"Guillermina Evelin Dominique Johnny\" and concatenate them.",
"answer": "aney"
},
{
"question": "Take the last letters of each words in \"Constance Nicholas Will Love\" and concatenate them.",
"answer": "esle"
},
{
"question": "Take the last letters of each words in \"Jenni Leonel Micheal Kat\" and concatenate them.",
"answer": "illt"
},
{
"question": "Take the last letters of each words in \"Krishna Catalina Eileen Teddy\" and concatenate them.",
"answer": "aany"
},
{
"question": "Take the last letters of each words in \"Teresa Reid Karin Gracie\" and concatenate them.",
"answer": "adne"
},
{
"question": "Take the last letters of each words in \"Jody Juan Rebekah Kaylee\" and concatenate them.",
"answer": "ynhe"
},
{
"question": "Take the last letters of each words in \"Anil Enrique Jimmy Jhonny\" and concatenate them.",
"answer": "leyy"
},
{
"question": "Take the last letters of each words in \"Yajaira Terrell Adam Lexie\" and concatenate them.",
"answer": "alme"
},
{
"question": "Take the last letters of each words in \"Donald Lia Gonzalo Lily\" and concatenate them.",
"answer": "daoy"
},
{
"question": "Take the last letters of each words in \"Antoine Javier Brett Stewart\" and concatenate them.",
"answer": "ertt"
},
{
"question": "Take the last letters of each words in \"Penny Harry Jessica Horacio\" and concatenate them.",
"answer": "yyao"
},
{
"question": "Take the last letters of each words in \"Sue Cassandra Cody Cali\" and concatenate them.",
"answer": "eayi"
},
{
"question": "Take the last letters of each words in \"Cassie Clifton Erik Everardo\" and concatenate them.",
"answer": "enko"
},
{
"question": "Take the last letters of each words in \"Loren Wes Dean Hayley\" and concatenate them.",
"answer": "nsny"
},
{
"question": "Take the last letters of each words in \"Bri Roger Eve Diana\" and concatenate them.",
"answer": "irea"
},
{
"question": "Take the last letters of each words in \"Desmond Camille Joana Garcia\" and concatenate them.",
"answer": "deaa"
},
{
"question": "Take the last letters of each words in \"Albert Felicia Margo Patty\" and concatenate them.",
"answer": "taoy"
},
{
"question": "Take the last letters of each words in \"Kristopher Deb Jake Tammy\" and concatenate them.",
"answer": "rbey"
},
{
"question": "Take the last letters of each words in \"Lore Erasmo Louis David\" and concatenate them.",
"answer": "eosd"
},
{
"question": "Take the last letters of each words in \"Connie Elena Tami Stuart\" and concatenate them.",
"answer": "eait"
},
{
"question": "Take the last letters of each words in \"Courtney Ann John Fer\" and concatenate them.",
"answer": "ynnr"
},
{
"question": "Take the last letters of each words in \"Jazmine Carmen Kitty Nina\" and concatenate them.",
"answer": "enya"
},
{
"question": "Take the last letters of each words in \"Justin Neal Jt Lucia\" and concatenate them.",
"answer": "nlta"
},
{
"question": "Take the last letters of each words in \"Efrain Rickey Jonathan Kelli\" and concatenate them.",
"answer": "nyni"
},
{
"question": "Take the last letters of each words in \"Kathy Elsa Alba Ivette\" and concatenate them.",
"answer": "yaae"
},
{
"question": "Take the last letters of each words in \"Matilde Jan Marcel Mimi\" and concatenate them.",
"answer": "enli"
},
{
"question": "Take the last letters of each words in \"Mabel Estela Irene May\" and concatenate them.",
"answer": "laey"
},
{
"question": "Take the last letters of each words in \"Ron Carl Joann Young\" and concatenate them.",
"answer": "nlng"
},
{
"question": "Take the last letters of each words in \"Stevie Julie Leonard Karina\" and concatenate them.",
"answer": "eeda"
},
{
"question": "Take the last letters of each words in \"Blaine Syed Priya Ruby\" and concatenate them.",
"answer": "eday"
},
{
"question": "Take the last letters of each words in \"Ivy Romeo Jana Ej\" and concatenate them.",
"answer": "yoaj"
},
{
"question": "Take the last letters of each words in \"Latoya Eliseo Trina Melisa\" and concatenate them.",
"answer": "aoaa"
},
{
"question": "Take the last letters of each words in \"Meg Andrey Gerard Lilia\" and concatenate them.",
"answer": "gyda"
},
{
"question": "Take the last letters of each words in \"Quinton Sam Soledad Becca\" and concatenate them.",
"answer": "nmda"
},
{
"question": "Take the last letters of each words in \"Williams Reza Ashton Lillian\" and concatenate them.",
"answer": "sann"
},
{
"question": "Take the last letters of each words in \"Vicki Dwight Johnson Alexandra\" and concatenate them.",
"answer": "itna"
},
{
"question": "Take the last letters of each words in \"Diego Val Vincent Stacie\" and concatenate them.",
"answer": "olte"
},
{
"question": "Take the last letters of each words in \"Rubi Daisy Yadira Santa\" and concatenate them.",
"answer": "iyaa"
},
{
"question": "Take the last letters of each words in \"Nidia Rachelle Lauren Shelia\" and concatenate them.",
"answer": "aena"
},
{
"question": "Take the last letters of each words in \"Sonia Griffin Claude Josephine\" and concatenate them.",
"answer": "anee"
},
{
"question": "Take the last letters of each words in \"Emilia Jonas Christi Sophia\" and concatenate them.",
"answer": "asia"
},
{
"question": "Take the last letters of each words in \"Armando Astrid Anibal Dakota\" and concatenate them.",
"answer": "odla"
},
{
"question": "Take the last letters of each words in \"Marcos Kerri Fabio Stephen\" and concatenate them.",
"answer": "sion"
},
{
"question": "Take the last letters of each words in \"Glen Ariana Reggie Polo\" and concatenate them.",
"answer": "naeo"
},
{
"question": "Take the last letters of each words in \"Andre Oralia Carrie Bruno\" and concatenate them.",
"answer": "eaeo"
},
{
"question": "Take the last letters of each words in \"Debby Geoffrey Alana Silvestre\" and concatenate them.",
"answer": "yyae"
},
{
"question": "Take the last letters of each words in \"Nabil Marlene Wendy Jillian\" and concatenate them.",
"answer": "leyn"
},
{
"question": "Take the last letters of each words in \"Rahul Praveen Isaiah Elsie\" and concatenate them.",
"answer": "lnhe"
},
{
"question": "Take the last letters of each words in \"Alain Jerome Kristina Ida\" and concatenate them.",
"answer": "neaa"
},
{
"question": "Take the last letters of each words in \"Carla Dolores Cooper Damion\" and concatenate them.",
"answer": "asrn"
},
{
"question": "Take the last letters of each words in \"Jaime Brad Levi Emmanuel\" and concatenate them.",
"answer": "edil"
},
{
"question": "Take the last letters of each words in \"Fernanda Magda Elmer Alvaro\" and concatenate them.",
"answer": "aaro"
},
{
"question": "Take the last letters of each words in \"Thomas Cara Nita Frances\" and concatenate them.",
"answer": "saas"
},
{
"question": "Take the last letters of each words in \"Mauricio Lee Madi Lizzie\" and concatenate them.",
"answer": "oeie"
},
{
"question": "Take the last letters of each words in \"Pancho Claudio Elaine Vicky\" and concatenate them.",
"answer": "ooey"
},
{
"question": "Take the last letters of each words in \"Axel Osvaldo Mildred Sylvia\" and concatenate them.",
"answer": "loda"
},
{
"question": "Take the last letters of each words in \"Niki Graham Vernon Beau\" and concatenate them.",
"answer": "imnu"
},
{
"question": "Take the last letters of each words in \"Jermaine Pat Tammie Olivia\" and concatenate them.",
"answer": "etea"
},
{
"question": "Take the last letters of each words in \"Adrian Marlon Karla Florence\" and concatenate them.",
"answer": "nnae"
},
{
"question": "Take the last letters of each words in \"Chuy Shane Jaden Maynor\" and concatenate them.",
"answer": "yenr"
},
{
"question": "Take the last letters of each words in \"Jesse Roderick Travis Rita\" and concatenate them.",
"answer": "eksa"
},
{
"question": "Take the last letters of each words in \"Marty Justine Edgardo Osman\" and concatenate them.",
"answer": "yeon"
},
{
"question": "Take the last letters of each words in \"Dusty Yanet Hortencia Lili\" and concatenate them.",
"answer": "ytai"
},
{
"question": "Take the last letters of each words in \"Jes\u00fas Vidal Maxine Gloria\" and concatenate them.",
"answer": "slea"
},
{
"question": "Take the last letters of each words in \"Vinny Landon Miguel Caitlyn\" and concatenate them.",
"answer": "ynln"
},
{
"question": "Take the last letters of each words in \"Craig Dillon Troy Griselda\" and concatenate them.",
"answer": "gnya"
},
{
"question": "Take the last letters of each words in \"H\u00e9ctor Daniela Rossy Jose Manuel\" and concatenate them.",
"answer": "rayl"
},
{
"question": "Take the last letters of each words in \"Nicky Eden James Matt\" and concatenate them.",
"answer": "ynst"
},
{
"question": "Take the last letters of each words in \"Kendall Matias Kaleb Randy\" and concatenate them.",
"answer": "lsby"
},
{
"question": "Take the last letters of each words in \"Jodi Judi Nia Raj\" and concatenate them.",
"answer": "iiaj"
},
{
"question": "Take the last letters of each words in \"Barbie Desiree Yaneth Dre\" and concatenate them.",
"answer": "eehe"
},
{
"question": "Take the last letters of each words in \"Memo Joey Phil Samuel\" and concatenate them.",
"answer": "oyll"
},
{
"question": "Take the last letters of each words in \"Markus Kathryn Giovanna Kent\" and concatenate them.",
"answer": "snat"
},
{
"question": "Take the last letters of each words in \"Rosa Lana Curtis Rae\" and concatenate them.",
"answer": "aase"
},
{
"question": "Take the last letters of each words in \"Marcus Ramirez Junior Arely\" and concatenate them.",
"answer": "szry"
},
{
"question": "Take the last letters of each words in \"Ulises Derek Adrianna Eugene\" and concatenate them.",
"answer": "skae"
},
{
"question": "Take the last letters of each words in \"Ace Rosy Kimberly Jean\" and concatenate them.",
"answer": "eyyn"
},
{
"question": "Take the last letters of each words in \"Jeannie Kenneth Porfirio Ezequiel\" and concatenate them.",
"answer": "ehol"
},
{
"question": "Take the last letters of each words in \"Faustino Lamar Fransisco Rina\" and concatenate them.",
"answer": "oroa"
},
{
"question": "Take the last letters of each words in \"Idalia Arnoldo Marla Duane\" and concatenate them.",
"answer": "aoae"
},
{
"question": "Take the last letters of each words in \"Mari Ximena Leo Antonia\" and concatenate them.",
"answer": "iaoa"
},
{
"question": "Take the last letters of each words in \"Manish Lu Karl Don\" and concatenate them.",
"answer": "huln"
},
{
"question": "Take the last letters of each words in \"Ira Paola Jose Antonio Maria\" and concatenate them.",
"answer": "aaoa"
},
{
"question": "Take the last letters of each words in \"Karen Hector Mai Steven\" and concatenate them.",
"answer": "nrin"
},
{
"question": "Take the last letters of each words in \"Andres Mary Ann Sydney Dina\" and concatenate them.",
"answer": "snya"
},
{
"question": "Take the last letters of each words in \"Emma Maryann Olga Nataly\" and concatenate them.",
"answer": "anay"
},
{
"question": "Take the last letters of each words in \"Ale Gaspar Sonny Simon\" and concatenate them.",
"answer": "eryn"
},
{
"question": "Take the last letters of each words in \"Cruz Wilber Marilu Malik\" and concatenate them.",
"answer": "zruk"
},
{
"question": "Take the last letters of each words in \"Colton Dexter Katy Brayden\" and concatenate them.",
"answer": "nryn"
},
{
"question": "Take the last letters of each words in \"Raven Marisela Ross Angie\" and concatenate them.",
"answer": "nase"
},
{
"question": "Take the last letters of each words in \"Rena Devon Rosalinda Paulina\" and concatenate them.",
"answer": "anaa"
},
{
"question": "Take the last letters of each words in \"Davis Jules Fabiola Cherie\" and concatenate them.",
"answer": "ssae"
},
{
"question": "Take the last letters of each words in \"Kyra Luciano Ciara Bryan\" and concatenate them.",
"answer": "aoan"
},
{
"question": "Take the last letters of each words in \"Skyler Oliver Cristy Sierra\" and concatenate them.",
"answer": "rrya"
},
{
"question": "Take the last letters of each words in \"Leandro Maricela Genevieve Lesly\" and concatenate them.",
"answer": "oaey"
},
{
"question": "Take the last letters of each words in \"Elise Lupe Renee Noemi\" and concatenate them.",
"answer": "eeei"
},
{
"question": "Take the last letters of each words in \"Ever Gio Elia Ramesh\" and concatenate them.",
"answer": "roah"
},
{
"question": "Take the last letters of each words in \"Ronnie Kiki Alan Remy\" and concatenate them.",
"answer": "einy"
},
{
"question": "Take the last letters of each words in \"Celso Tracy Winston Anton\" and concatenate them.",
"answer": "oynn"
},
{
"question": "Take the last letters of each words in \"Whitney Erika Tj Benito\" and concatenate them.",
"answer": "yajo"
},
{
"question": "Take the last letters of each words in \"Gus Brock Ava Jenna\" and concatenate them.",
"answer": "skaa"
},
{
"question": "Take the last letters of each words in \"Alfonso Collin Amado Dick\" and concatenate them.",
"answer": "onok"
},
{
"question": "Take the last letters of each words in \"Lewis Azucena Kai Ravi\" and concatenate them.",
"answer": "saii"
},
{
"question": "Take the last letters of each words in \"Bret Lois Ismael Mirna\" and concatenate them.",
"answer": "tsla"
},
{
"question": "Take the last letters of each words in \"Nicolas Aaliyah Pascual Rob\" and concatenate them.",
"answer": "shlb"
},
{
"question": "Take the last letters of each words in \"Nichole Heriberto Darian Peter\" and concatenate them.",
"answer": "eonr"
},
{
"question": "Take the last letters of each words in \"Estrella Madison Paco Rj\" and concatenate them.",
"answer": "anoj"
},
{
"question": "Take the last letters of each words in \"Nick Ada Stephany Suzie\" and concatenate them.",
"answer": "kaye"
},
{
"question": "Take the last letters of each words in \"Steph Pablo Ceci Francine\" and concatenate them.",
"answer": "hoie"
},
{
"question": "Take the last letters of each words in \"Shari Bella Liza Maira\" and concatenate them.",
"answer": "iaaa"
},
{
"question": "Take the last letters of each words in \"Shawn Tracie Lynne Leila\" and concatenate them.",
"answer": "neea"
},
{
"question": "Take the last letters of each words in \"Sally Sadie Christie Ellie\" and concatenate them.",
"answer": "yeee"
},
{
"question": "Take the last letters of each words in \"Ernest Yuri Camila Ashlee\" and concatenate them.",
"answer": "tiae"
},
{
"question": "Take the last letters of each words in \"Charles Emilio Vivek Steve\" and concatenate them.",
"answer": "soke"
},
{
"question": "Take the last letters of each words in \"Lucky Mireya Jj Kc\" and concatenate them.",
"answer": "yajc"
},
{
"question": "Take the last letters of each words in \"Oswaldo Jos\u00e9 Luis Sheldon Tara\" and concatenate them.",
"answer": "osna"
},
{
"question": "Take the last letters of each words in \"Carole William Tiffany Hilary\" and concatenate them.",
"answer": "emyy"
},
{
"question": "Take the last letters of each words in \"Efren Rex Marilyn Emerson\" and concatenate them.",
"answer": "nxnn"
},
{
"question": "Take the last letters of each words in \"Sal Scott Myrna Maximo\" and concatenate them.",
"answer": "ltao"
},
{
"question": "Take the last letters of each words in \"Rich Parker Edward Milagros\" and concatenate them.",
"answer": "hrds"
},
{
"question": "Take the last letters of each words in \"Beatrice Taylor Juan Carlos Kaitlin\" and concatenate them.",
"answer": "ersn"
},
{
"question": "Take the last letters of each words in \"Wilma Margie Amber Sergio\" and concatenate them.",
"answer": "aero"
},
{
"question": "Take the last letters of each words in \"Sean Rebeca Marco Sami\" and concatenate them.",
"answer": "naoi"
},
{
"question": "Take the last letters of each words in \"Amanda Geoff Belinda Gaurav\" and concatenate them.",
"answer": "afav"
},
{
"question": "Take the last letters of each words in \"Marian Joanne Darrin Rohit\" and concatenate them.",
"answer": "nent"
},
{
"question": "Take the last letters of each words in \"Lilian Ian Bryce Aracely\" and concatenate them.",
"answer": "nney"
},
{
"question": "Take the last letters of each words in \"Rashad Savannah Flavio Bert\" and concatenate them.",
"answer": "dhot"
},
{
"question": "Take the last letters of each words in \"Altagracia Howard Patti Douglas\" and concatenate them.",
"answer": "adis"
},
{
"question": "Take the last letters of each words in \"Selene Felix Milton Yessica\" and concatenate them.",
"answer": "exna"
},
{
"question": "Take the last letters of each words in \"Garrett Eva Joaquin Monique\" and concatenate them.",
"answer": "tane"
},
{
"question": "Take the last letters of each words in \"Blanca Monika Ervin Lori\" and concatenate them.",
"answer": "aani"
},
{
"question": "Take the last letters of each words in \"Gabi Dante Rafa Tricia\" and concatenate them.",
"answer": "ieaa"
},
{
"question": "Take the last letters of each words in \"Suzanne Julissa Chino America\" and concatenate them.",
"answer": "eaoa"
},
{
"question": "Take the last letters of each words in \"Lino Mariel Aditya Elisabeth\" and concatenate them.",
"answer": "olah"
},
{
"question": "Take the last letters of each words in \"Abel Mallory Theresa Quinn\" and concatenate them.",
"answer": "lyan"
},
{
"question": "Take the last letters of each words in \"Tim Candace Cecil Misael\" and concatenate them.",
"answer": "mell"
},
{
"question": "Take the last letters of each words in \"Yasmin Yesenia Carmela Susie\" and concatenate them.",
"answer": "naae"
},
{
"question": "Take the last letters of each words in \"Stella Janis Darren Lena\" and concatenate them.",
"answer": "asna"
},
{
"question": "Take the last letters of each words in \"Russ Berta Mandy Lydia\" and concatenate them.",
"answer": "saya"
},
{
"question": "Take the last letters of each words in \"Imelda Andi Mack Rigoberto\" and concatenate them.",
"answer": "aiko"
},
{
"question": "Take the last letters of each words in \"Domingo Briana Michael Joan\" and concatenate them.",
"answer": "oaln"
}
] |