#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int tt; cin >> tt; while (tt--) { int n; cin >> n; vector a(n); for (int &x : a) { cin >> x; } int cnt = 0; for (int i = 0; i < n; i++) { cnt += (a[i] == i + 1); } cout << (cnt > 10 ? "First" : "Second") << '\n'; } return 0; }