#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define pi (3.141592653589)
#define mod 1000000007
#define pb push_back
#define vi vector<ll>
#define mp make_pair
#define f first
#define s second
#define sz(container) (ll) container.size()
#define setp(x) cout << fixed << setprecision(x)
#define all(container) container.begin(), container.end()
#define rall(container) container.rbegin(), container.rend()
#define fast ios_base::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr);
int main()
{
fast;
int t;
cin >> t;
while (t--)
{
int n, k;
cin >> n >> k;
vector<string> v(n);
for (int i = 0; i < n; ++i)
{
cin >> v[i];
}
while (k-- > 0 && v.size() > 1)
{
string maxConcat = "";
int maxIndex = -1;
for (int i = 0; i < v.size() - 1; ++i)
{
string concat = v[i] + v[i + 1];
if (concat > maxConcat)
{
maxConcat = concat;
maxIndex = i;
}
}
v[maxIndex] = maxConcat;
v.erase(v.begin() + maxIndex + 1);
}
string result = *max_element(v.begin(), v.end());
cout << result << "\n";
}
}