#include using namespace std; const int N=1e5+11; int n; int p[N]; int work(){ if(n<10) return p[1]==2; int tot=0; for(int i=1;i<=n;++i){ tot += (p[i] == i); } return tot > 50; } int main(){ ios::sync_with_stdio(0); int T; cin>>T; while(T--){ cin>>n; for(int i=1;i<=n;++i)cin>>p[i]; int t=work(); cout<<(t?"First":"Second")<<"\n"; } }