Can PowerShell arrays hold diferrent data types ?

hello

i know that you cannnot mix data type in the same array like this

@(“hello”,1…10)

but is it a way to do it?

thank you

of course you can

@("hello",(1..10))

thank you