Not sure what you are looking for but I some what fixed your script NO Errors
CODE#include <GUIConstants.au3>
Dim $Answer[3]
$sGui = GUICreate("Sloganizer.Net :: Secure_ICT AutoIt Version", 554, 338, -1, -1)
GUISetBkColor(0xFFFFFF)
$Pic1 = GUICtrlCreatePic("logo.jpg", 0, 16, 553, 81, BitOR($SS_NOTIFY,$WS_GROUP))
$Text = GUICtrlCreateInput("Text", 72, 112, 385, 21)
$sloganize = GUICtrlCreateButton("Sloganize", 152, 144, 217, 25, 0)
$FinalText = GUICtrlCreateLabel("", 72, 192, 4, 4)
GUICtrlSetFont(-1, 36, 800, 0, "Arial")
GUICtrlSetColor(-1, 0xFF0000)
GUICtrlSetBkColor(-1, 0xFFFFFF)
GUISetState(@SW_SHOW)
Global $Answer
$Answer[1] = "<< " & $Text & " will be for you what you want it to be.>>"
$Answer[2] = "<< " & $Text & ", in touch with tomorrow.>>"
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $sloganize
EndSwitch
WEnd
Func SloganizeTxt()
$SloganizeNow = GuiCtrlRead($Text)
$Random = Random($Answer)
GUICtrlSetData($sGui ,$Random)
EndFunc
Added:
Dim $Answer[3]
Changed
$Answer[1] = "<< " & $Text & " will be for you what you want it to be.>>"
$Answer[2] = "<< " & $Text & ", in touch with tomorrow.>>"
Fixed
GUICtrlSetData($sGui ,$Random)