How to Open an Existing Word Document with AutoHotkey

Word := ComObjCreate("Word.Application")
Word.Visible := True

file := "C:\Users\User\Desktop\WordFile.docx" ; Path to file
Word.Documents.Open(file)