First, it is not necessary to change the orientation of the ranges.
If your y-data are in the 1-by-11 row AH17:AR17 and your x-data were in the
2-by-11 rows DK17

U18, you could simply write the following array-entered
format (selecting the appropriate number of cells and pressing
ctrl+shift+Enter instead of just Enter):
=LINEST(AH17:AR17,DK17

U18,TRUE,TRUE)
(Note: I am not typing the "Sheet1!" prefix for brevity. You would write
Sheet1!AH17:AR17 etc.)
Second, by "combine the array", I assume you mean: create one 2-by-11 array
of two 1-by-11 arrays for the purpose of __multiple__ linear regression, not
concatenate two 11-element arrays into one 22-element array for the purpose
of __simple__ linear regression.
As you might know, the x-data must have the same number of elements as the
y-data in the "principle direction" (row or column) as the y-data.
Finally, your two ranges, DK17

U17 and DJ17

T17, are unusual insofar as
they overlap. If that makes sense for your multiple linear regression
model, fine. Otherwise, you might need to revisit what you are trying todo
exactly.
Be that as it may, instead of using a UDF, I would be inclined to use
"helper cells". For example:
IL1: =DK17
Copy IL1 across through IV1
IL2: =DJ17
Copy IL2 across through IV2
Array-enter:
=LINEST(AH17:AR17,IL1:IV2,TRUE,TRUE)
But if you really need a UDF (for example, because you are replicating the
LINEST formula for several sets of y and x data), the following returns a
2-by-n array when passed two 1-by-n ranges (rows).
Array-enter:
=LINEST(AH17:AR17,combineRows(DK17

U17,DJ17

T17)
The UDF:
Function combineRows(r1 As Range, r2 As Range) As Variant
Dim v1 As Variant, v2 As Variant
Dim n As Long, i As Long
v1 = r1
v2 = r2
n = UBound(v1, 2)
If UBound(v1, 1) <> 1 Or UBound(v1, 1) <> 1 Or n <> UBound(v2, 2) Then
combineRows = CVErr(xlErrValue)
Else
ReDim v(1 To 2, 1 To n)
For i = 1 To n
v(1, i) = v1(1, i)
v(2, i) = v2(1, i)
Next
combineRows = v
End If
End Function