#include <string>
#include <algorithm>
#include <iostream>

int main()
{
    std::string Moves[6][3] = 
	{
		{"U","U'","U2"},
		{"D","D'","D2"},
		{"F","F'","F2"},
		{"B","B'","B2"},
		{"R","R'","R2"},
		{"L","L'","L2"}
	};
    std::string scramble = "";
    std::random_shuffle(*Moves, *Moves + 18);
    for (int i = 0; i < 6; ++i)
    {
        for (int j = 0; j < 3; ++j)
        {
            std::cout << "Moves[" << i << "][" << j << "]:  " << Moves[i][j] << std::endl;
        }
    }
    return 0;
}
