#include template inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } int main(){ int testcase_i; scanf("%d", &testcase_i); for (int ___ = 0; ___ < testcase_i; ___++){ int N; scanf("%d", &N); bool odd = false; int mn = 1000000000; for(int i = 0; i < N; ++i){ int A; scanf("%d", &A); chmin(mn, A); odd ^= (A-1)&1; } printf(odd || ((mn-1)&1 && !(N&1)) ? "First\n" : "Second\n"); } }