#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll N = 2e5 + 10;
const ll MOD = 1e9 + 7;
void solve()
{
ll n, k;
cin >> n >> k;
vector<string>v(n);
for(ll i = 0; i < n; i++) {
cin >> v[i];
}
string ans = "";
for(ll i = 0; i < (n - k); i++) {
string temp = "";
for(ll j = i; j <= (i + k); j++) {
temp += v[j];
}
if(temp.size() > ans.size()) ans = temp;
else ans = max(ans, temp);
}
cout << ans << "\n";
}
int main()
{
ios::sync_with_stdio(false),cin.tie(0),cout.tie(0);
int t;
cin >> t;
while(t--){
solve();
}
}