having trouble moving files with a variable name

I have a FOLDER named iSEEu on the desktop. I wanted any folder whose name contains “Video” to be moved to this file. I wrote this script. It does not show any errors, but nothing happens. Any ideas? Thanks!

tell application "Finder"
	get name of files
	set fileName to name of files
	move (files whose fileName contains "Video") to folder "iSEEu"
end tell

I think you’re looking for something like this:

tell application "Finder"
	move (every folder of desktop whose name contains "Video") to (folder "iSEEu" of desktop)
end tell