for _ in range(int(input())): input() cnt = 0 c3 = 0 for x in map(int, input().split()): cnt += 2 <= x % 5 <= 3 c3 += x == 3 print('First' if c3 % 2 or cnt % 2 else 'Second')