#include <bits/stdc++.h>
using namespace std;

int main() {
    int t;
    cin >> t;
    while (t--) {
        int n;
        cin >> n;
        vector<int>a(n);
        int f = 0,mi = 1001001001;
        for(int i = 0; i < n; i++) {
            cin >> a[i];
            mi = min(mi,a[i]);
            f ^= (a[i]-1)%2;
        }
        if(f) {
            cout << "First" << endl;
        }
        else {
            if(n%2 == 1 || (mi-1)%2 == 0) {
                cout << "Second" << endl;
            }
            else {
                cout << "First" << endl;
            }
        }
    }
}