Okay so currently I have this code and I tried just putting ss where the quotes are down where it says "Where I want SS to be added" but it didn't work so I looked into the issue and with no help I have come to you guys. I messed up my last question so I hope that I do some what well on this one but anyways here is my current code that I used based on Eric Lippert's blog post
Public Class Form1
Private Function CartesianProduct(Of T)(ParamArray sequences As T()()) As T()()
' base case:
Dim result As IEnumerable(Of T()) = {New T() {}}
For Each sequence In sequences
Dim s = sequence
' don't close over the loop variable
' recursive case: use SelectMany to build the new product out of the old one
result = From seq In result
From item In s
Select seq.Concat({item}).ToArray()
Next
Return result.ToArray()
End Function
Dim s1 As String() = New String() {"a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"}
Dim s2 As String() = New String() {"1", "2", "3", "4", "5", "6", "7", "8", "9"}
Dim ss As String()() = CartesianProduct(s1, s1, s2, s2, s2, s2, s1, s1)
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
TextBox1.Text = TextBox1.Text + "000" + "Where I want SS to be added to"
End Sub
End Class