How would I make this print corectly?

How would I make this print Animation(Random number) no spaces? Right now it prints Animation (space) (Random number). Random number = local randomnumber = math.random(1, 2)
Screen Shot 2022-04-23 at 2.20.54 PM

Just do:

print("Animation" .. randomnumber)

Commas add a space between the parameters, instead you can use two dots, but I think one works fine as long as you keep a space between the parameters.